@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
	padding: 0px;
	margin: 0px;
    font-family: "Montserrat", sans-serif;
    background-color: #0F1014;
}
ul{
	padding: 0px;
	margin: 0px;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: unset;
	cursor: pointer;
}
h1, h2, h3, h4, h5{
	margin: 0px;
    font-weight: unset;
}
p{
    margin: 0px;
}
input, button, textarea, select{
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    font-family: "Montserrat", sans-serif;
}
.center{
    width: 90%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
}
/* HEADER */
header{
    width: 100%;
    height: auto;
    float: left;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    padding: 20px 0;
    transition: .2s;
    z-index: 10005;
}
header.scroll{
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: .2s;
}
.header__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.header__item{
    width: fit-content;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
.header__item-logo{
    width: fit-content;
    height: auto;
    float: left;
    color: #fff;
    text-align: left;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
}
.header__item-bar{
    width: 35px;
    height: 35px;
    display: none;
    background-image: url("../images/icon/menu.svg");
    border: 1px solid #fff;
    background-color: unset;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px;
}
.header__item-bar.show{
    background-image: url("../images/icon/menu-close.svg");
    background-size: 17px;
}
.header__item-logo b{
	width: fit-content;
	height: auto;
	float: left;
	text-transform: uppercase;
	font-size: 21px;
	font-weight: 800;
}
.header__item ul{
    width: fit-content;
    height: auto;
    float: right;
}
.header__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 30px;
}
.header__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    position: relative;
}
.header__item ul > li > a::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    bottom: -6px;
    transition: .2s;
}
.header__item ul > li > a:hover::before{
    width: 100%;
    transition: .2s;
}
.header__item ul > li > a.active::before{
    width: 100%;
    transition: .2s;
}
.header__item__contacts{
    width: fit-content;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
    margin: 0 0 0 70px;
}
.header__item__contacts-phone{
    width: fit-content;
    height: auto;
    float: right;
    color: #ffffff;
    text-align: right;
    font-weight: 600;
    font-size: 18px;
    transition: .2s;
}
.header__item__contacts-phone:hover{
    transform: scale(1.1);
    transition: .2s;
}
.header__item__contacts-address{
    width: fit-content;
    height: auto;
    float: right;
    text-align: right;
    font-size: 12px;
    margin: 2px 0 0 0;
    color: #ffffff;
    opacity: 0.7;
}
/* HEADER */

/* MAIN */
.main{
    width: 100%;
    height: auto;
    float: left;
    background-color: #151A1A;
    position: relative;
}
.main__row{
    width: 100%;
    height: auto;
    float: left;
}
.main__item{
    width: 100%;
    height: 100vh;
    float: left;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    position: relative;
}
.main__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 50px;
    line-height: 61px;
    text-align: left;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.main__item-description{
    width: 25%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 40px;
}
.main video{
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0.6;
    object-fit: cover;
}
/* MAIN */

/* CARS */
.cars{
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}
.cars__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.cars__item{
    width: initial;
    height: 55px;
    object-fit: contain;
    object-position: center;
    opacity: 0.4;
    transition: .2s;
}
.cars__item:hover{
    opacity: 1;
    transition: .2s;
}
.cars__item:nth-child(5){
    height: 40px;
}
/* CARS */

/* ABOUT */
.about{
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0 0;
}
.about__row{
    width: 100%;blog__section
    height: auto;
    float: left;
}
.about__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about__box:nth-child(1){
    width: 40%;
    height: auto;
}
.about__box:nth-child(2){
    width: 55%;
    height: auto;
}
.about__box-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.about__box-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
}
.about__item video{
    width: 100%;
    height: 400px;
    float: left;
    object-fit: cover;
    object-position: bottom;
    margin: 50px 0 0 0;
    opacity: 0.7;
}
/* ABOUT */

/* STEPS */
.steps{
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
}
.steps-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.steps-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    margin: 15px 0 0;
}
.steps__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.steps__item{
    width: 32%;
    height: auto;
    margin: 40px 0 0 0;
    border: 2px solid #1F2125;
    padding: 25px;
    box-sizing: border-box;
    background-color: #151a1a;
}
.steps__item b{
    width: 100%;
    height: auto;
    float: left;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
}
.steps__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    margin: 15px 0 0 0;
}
.steps__item span{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0 0;
}
/* STEPS */

/* ESTIMATE */
.estimate{
    width: 100%;
    height: auto;
    float: left;
}
.estimate__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-image: url("../images/poster/estimate.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 50px;
    box-sizing: border-box;
    align-content: center;
    align-items: center;
    position: relative;
}
.estimate__row::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0F1014;
    opacity: 0.6;
}
.estimate__item{
    width: 50%;
    height: auto;
    position: relative;
}
.estimate__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.estimate__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 20px 0 0 0;
}
.estimate__item form{
    width: 95%;
    height: auto;
    float: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(21 26 26 / 70%);
    border: 1px solid #1F2125;
    padding: 25px;
    box-sizing: border-box;
    transition: .2s;
}
.estimate__item form > label{
    width: calc(50% - 7.5px);
    height: auto;
    margin: 0 0 15px;
    position: relative;
}
.estimate__item form > label:nth-child(1){
    width: 100%;
}
.estimate__item form > label:nth-child(8){
    width: 100%;
}
.estimate__item form > label > input,
.estimate__item form > label > select,
.estimate__item form > label > span{
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    background-color: #373639;
    border: 1px solid #454850;
    padding: 0 15px;
    box-sizing: border-box;
}
.estimate__item form > label > input::placeholder,
.estimate__item form > label > select::placeholder{
    color: #888888;
}
.estimate__item form > label > input[type='file']{
    cursor: pointer;
}
.estimate__item form > label > span{
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    color: #888888;
}
.about__box-policy{
    width: 90%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    margin: 10px 0 0 0;
}
.about__box-policy a{
    text-decoration: underline;
}
.estimate__item form > button{
    width: 100%;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    border: unset;
    background-color: #fff;
    color: #1C1C1C;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase;
    margin: 20px 0 0 0;
}
.estimate__item__result{
    width: 95%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: rgb(21 26 26 / 85%);
    border: 1px solid #1F2125;
}
.estimate__item__result p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}
.estimate__item__result span{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 23px;
    margin: 15px 0 0 0;
}
/* ESTIMATE */

/* REVIEWS */
.reviews{
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0 0;
}
.reviews_noindex{
    padding: 20px 0 80px;
}
.reviews-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.reviews-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    margin: 15px 0 0;
}
.reviews__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.reviews__item{
    width: 100%;
    height: auto;
    float: left;
    margin: 40px 0 0 0;
    border: 2px solid #1F2125;
    padding: 25px;
    box-sizing: border-box;
    background-color: #151a1a;
}
.reviews__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    margin: 20px 0 0 0;
    padding: 0 0 21px;
    position: relative;
}
.reviews__item p::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/icon/stars.svg");
}
.reviews__item span{
    width: 100%;
    height: auto;
    float: left;
    color: #aaaaaa;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    position: relative;
}
.reviews__controlers{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 0 0;
}
.reviews__controlers__box-more{
    width: fit-content;
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0 25px;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .2s;
}
.reviews__controlers__box-more:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
.reviews__controlers__box button{
    width: 45px;
    height: 45px;
    background-color: unset;
    border: 1px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    transition: .2s;
}
.reviews__controlers__box button:nth-child(2){
    margin: 0 0 0 10px;
}
.reviews__controlers__box button:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
/* REVIEWS */

/* FAQ */
.faq{
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
}
.faqpage{
    padding: 120px 0 60px;
}
.faqinsurance{
    padding: 60px 0 60px;
}
.faq__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq__item{
    width: 48%;
    height: auto;
}
.faqpage .faq__item{
    width: 100%;
}
.faqinsurance .faq__item{
    width: 100%;
}
.faq__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
}
.faq__item__list{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.managerfaq__row .faq__item__list{
    margin: 0;
}
.faq__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 31.3px 0;
    border-bottom: 2px solid #1F2125;
}
.faq__box a{
    width: fit-content;
    height: auto;
    float: left;
    color: #75777c;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    position: relative;
    cursor: pointer;
    margin: 0 0 5px;
}
.faq__box a:hover{
    text-decoration: underline;
}
.faq__box p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    position: relative;
    cursor: pointer;
}
.faq__box p::before{
    content: "+";
    position: absolute;
    right: 0%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    color: #FFFFFF;
    font-weight: 200;
    font-size: 30px;
}
.faq__box.active p::before{
    content: "-";
}
.faq__box span{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 12px 0 0;
    display: none;
}
.faq__box:nth-child(1) span{
    display: block;
}
.faq__item-poster{
    width: 100%;
    height: 100%;
    float: left;
    object-fit: cover;
    object-position: center;
}
.faq__item-more{
    width: fit-content;
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0 25px;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    margin: 25px 0 0 0;
    transition: .2s;
}
.faq__item-more:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
/* FAQ */

/* MAP */
.map{
    width: 100%;
    height: auto;
    float: left;
}
.map iframe{
    width: 100%;
    height: auto;
    float: left;
}
/* MAP */

/* FOOTER */
footer{
    width: 100%;
    height: auto;
    float: left;
    padding: 70px 0 100px;
    background-color: #151A1A;
    border-top: 2px solid #1F2125;
}
.footer__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__item:nth-child(1){
    width: 28%;
    height: auto;
}
.footer__item:nth-child(2){
    width: 55%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__item-logo{
    width: fit-content;
    height: auto;
    float: left;
    color: #fff;
    text-align: left;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
}
.footer__item-logo b{
	width: fit-content;
	height: auto;
	float: left;
	text-transform: uppercase;
	font-size: 21px;
	font-weight: 800;
}
.footer__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    margin: 20px 0 0 0;
}
.footer__box{
    width: 30%;
    height: auto;
}
.footer__box-title{
    width: fit-content;
    height: auto;
    float: left;
    text-align: left;
    color: #fff;
    font-size: 16px;
}
.footer__item form{
    width: 100%;
    height: auto;
    float: left;
    background-color: #373639;
    margin: 30px 0 0 0;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__item form > input{
    width: 65%;
    height: 40px;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    border: unset;
    background-color: unset;
    padding: 0 13px;
    box-sizing: border-box;
}
.footer__item form > button{
    width: 35%;
    height: 40px;
    border: unset;
    cursor: pointer;
    font-size: 13px;
    background-color: #1C1C1C;
    color: #ffffff;
    padding: 0;
    text-transform: uppercase;
    transition: .2s;
}
.footer__item form.success > button{
    color: rgb(28 28 28 / 0%);
    background-image: url("../images/icon/success.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transition: .2s;
}
.footer__box ul{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.footer__box ul > li{
    width: 100%;
    height: auto;
    float: left;
    margin: 13px 0 0 0;
}
.footer__box ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    transition: .2s;
}
.footer__box ul > li > a:hover{
    color: #ffffff;
    transition: .2s;
}
.footer__box-networks{
    width: fit-content;
    height: auto;
    display: flex;
    align-content: center;
    align-items: center;
    margin: 20px 0 0 0;
    float: left;
}
.footer__box-networks a{
    width: 20px;
    height: 20px;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.5;
    transition: .2s;
    margin: 0 20px 0 0;
}
.footer__box-networks a:hover{
    opacity: 1;
    transition: .2s;
}
.footer__box-networks a:nth-child(1){
    background-image: url("../images/icon/instagram.svg");
}
.footer__box-networks a:nth-child(2){
    background-image: url("../images/icon/yelp.svg");
}
.footer__box-networks a:nth-child(3){
    background-image: url("../images/icon/facebook.svg");
}
/* FOOTER */

/* COPYRIGHT */
.copyright{
    width: 100%;
    height: auto;
    float: left;
    background-color: #151A1A;
}
.copyright__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 2px solid #1F2125;
    padding: 35px 0;
}
.copyright__item{
    width: fit-content;
    height: auto;
}
.copyright__item-copy{
    width: fit-content;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
}
.copyright__item-copy a{
    color: #666666;
    transition: .2s;
}
.copyright__item-copy > a:hover{
    color: #fff;
    transition: .2s;
}
/* COPYRIGHT */

/* DOCUMENTS */
.documents{
    width: 100%;
    height: auto;
    float: left;
    padding: 140px 0 80px;
}
.documents-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.documents-description {
    width: 100%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 30px 0 0;
}
.documents-description b{
    width: 100%;
    height: auto;
    float: left;
    text-transform: uppercase;
    margin: 0 0 10px;
}
/* DOCUMENTS */

/* CALL */
.call-btn{
    width: 55px;
    height: 55px;
    border-radius: 100px;
    border: 2px solid #1F2125;
    background-color: #151a1a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-image: url("../images/icon/call.svg");
    box-sizing: border-box;
    position: fixed;
    bottom: 45px;
    right: 45px;
    z-index: 100005;
    animation: shadowPulse 2s infinite ease-in-out;
    transition: .2s;
}
@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 5px rgb(55, 54, 57, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgb(55, 54, 57, 0.8);
        transform: scale(1.2);
    }
    100% {
        box-shadow: 0 0 5px rgb(55, 54, 57, 0.6);
        transform: scale(1);
    }
}
.call-btn:hover{
    background-color: #0F1014;
    transition: .2s;
}
/* CALL */

/* MANAGER */
.manager{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.manager-title{
    width: 100%;
    height: auto;
    float: left;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.manager-add{
    width: 45px;
    height: 45px;
    float: right;
    background-color: #1f2126;
    border: 1px solid #2a2b2e;
    background-image: url("../images/icon/add.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px;
    margin: -41px 0 0 0;
}
.manager__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.manager__item{
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
    border: 2px solid #1F2125;
    padding: 20px;
    box-sizing: border-box;
    background-color: #151a1a;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    transition: .2s;
}
.manager__item:hover{
    border: 2px solid #ffffff;
    transition: .2s;
}
.manager__box{
    width: 12%;
    height: auto;
}
.manager__box:nth-child(2){
    width: 16%;
}
.manager__box:nth-child(5){
    width: 18%;
}
.manager__block-poster{
    width: 100%;
    height: auto;
    float: left;
    display: none;
}
.manager__block-poster:nth-child(1){
    display: block;
}
.manager__block-poster img{
    width: 100%;
    height: 69px;
    float: left;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.manager__box-model{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    line-height: 23px;
    text-transform: uppercase;
}
.manager__box-win{
    width: 100%;
    height: auto;
    float: left;
    color: #909090;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    line-height: 23px;
}
.manager__box-title{
    width: 100%;
    height: auto;
    float: left;
    color: #909090;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    line-height: 23px;
}
.manager__box-data{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    line-height: 23px;
    background-color: #151a1a;
    border: unset;
}
/* MANAGER */

/* SERVICES */
.services{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.services_index{
    padding: 60px 0 0;
}
.services.ins{
    padding: 0 0 60px;
    margin: -50px 0 0 0;
}
.services-back{
    width: fit-content;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    background-position: left center;
    background-size: 15px;
    background-image: url("../images/icon/back.svg");
    background-repeat: no-repeat;
}
.services-back:hover{
	text-decoration: underline;
}
.services-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.services__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 30px 0 0 0;
    gap: 30px;
}
.managerservices__row{
    gap: 30px;
    margin: 40px 0 0;
    justify-content: left;
}
.services__item{
    width: calc(33.3% - 20px);
    height: auto;
    box-sizing: border-box;
    border: 1px solid #48484c21;
    padding: 0 0 25px;
}
.services__item-poster{
    width: 100%;
    height: 230px;
    float: left;
    object-position: center;
    object-fit: cover;
}
.services__item-post{
    width: 100%;
    height: auto;
    max-height: 800px;
    float: left;
    object-position: center;
    object-fit: contain;
    background-color: #151a1a;
    border: 1px solid #1f2126;
}
.services__item-title{
    width: calc(100% - 30px);
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 17px;
    text-align: left;
    margin: -25px 15px 0;
    padding: 20px 20px 0;
    box-sizing: border-box;
    background-color: #0f0f14;
}
.services__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0 0;
    padding: 0 35px;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services__item-readmore{
    width: calc(100% - 70px);
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0;
    margin: 20px 35px 0;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .2s;
    justify-content: center;
}
.services__item-readmore:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
.services__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services__section__box{
    width: calc(50% - 20px);
    height: auto;
}
.services__section-description {
    width: 100%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 25px 0 0;
}
.services__section-description b{
    width: 100%;
    height: auto;
    float: left;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #ffffff;
}
.services__section__cta{
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    background-color: rgb(21, 26, 26);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(31, 33, 37);
    border-image: initial;
    padding: 25px;
    transition: 0.2s;
}
.services__section__cta__box{
	width: 50%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-end;
}
.services__section__cta__box h3 {
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    text-align: left;
    text-transform: uppercase;
}
.services__section__cta__box p {
    width: 70%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
    margin: -8px 30% 0 0;
}
.services__section__cta__box a{
	width: 40%;
	height: 45px;
	float: right;
	cursor: pointer;
	font-size: 14px;
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255, 255, 255);
	border-image: initial;
	padding: 0px;
	transition: 0.2s;
}
.services__section__cta__box a:hover{
	color: rgb(21 26 26);
	background-color: rgb(255, 255, 255);
}
.services__keywords{
     width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.services__keywords{
    font-size: 14px;
    color: #929292;
}
/* SERVICES */

/* MANAGER */
.managernav{
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 40px 0;
}
.managernav_list {
    width: 100%;
    height: auto;
    float: left;
    border: 2px solid #1F2125;
    padding: 10px;
    box-sizing: border-box;
    background-color: #151a1a;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    transition: .2s;
}
.managernav_list li{
    width: 14.2%;
    height: auto;
    float: left;
}
.managernav_list li > a{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    padding: 15px 0;
    text-transform: uppercase;
    border: 1px solid #151a1a;
    box-sizing: border-box;
}
.managernav_list li.active > a{
	background-color: rgb(31 33 38);
	color: #ffffff;
	border: 1px solid #2a2b2e;
}
.managerservices__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.managerservices__form label{
    width: calc(50% - 10px);
    height: auto;
    position: relative;
}
.managerservices__form label.max{
    width: 100%;
}
.managerservices__form label > span{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 0 0 5px;
}
.managerservices__form label > input,
.managerservices__form label > select,
.managerservices__form label > textarea{
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    background-color: #373639;
    border: 1px solid #454850;
    padding: 0 15px;
    box-sizing: border-box;
}
.managerservices__form label > textarea{
    height: 120px;
    padding: 15px;
    resize: vertical;
}
.managerservices__form label > input[type="file"]{
	z-index: 1;
	position: relative;
	opacity: 0;
	cursor: pointer;
}
.managerservices__form-file{
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    background-color: #373639;
    border: 1px solid #454850;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    text-transform: uppercase;
}
.managerservices__form button {
    width: 100%;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    border: unset;
    background-color: unset;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase;
    transition: .3s;
    box-sizing: border-box;
}
.managerservices__form button:hover{
    background-color: #fff;
    color: #1C1C1C;
    transition: .3s;
}
/* MANAGER */

/* LOGIN */
.login{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.login__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login__item{
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: rgb(21 26 26 / 70%);
    border: 1px solid #1F2125;
    padding: 30px 25px 25px;
    box-sizing: border-box;
}
.login__item h2{
	width: 100%;
	height: auto;
	float: left;
	text-transform: uppercase;
	font-size: 21px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	margin: 0 0 20px;
}
.login__item form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: .2s;
}
.login__item form > .form-group{
    width: 100%;
    height: auto;
    margin: 0 0 15px;
    position: relative;
}
.login__item form > .form-group > input,
.login__item form > .form-group > select,
.login__item form > .form-group > span{
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    background-color: #373639;
    border: 1px solid #454850;
    padding: 0 15px;
    box-sizing: border-box;
}
.login__item form > .form-group > input::placeholder,
.login__item form > .form-group > select::placeholder{
    color: #888888;
}
.login__item form > .form-group > label{
    height: auto;
    width: 100%;
    float: left;
    color: #888888;
    font-size: 14px;
    margin: 0 0 10px;
}
.login__item form > button{
    width: 100%;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    border: unset;
    background-color: #fff;
    color: #1C1C1C;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase;
    margin: 20px 0 0 0;
}
/* LOGIN */

/* NOTIFICATION */
.display_alert{
    width: fit-content;
    max-width: 300px;
    height: auto;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 10005;
    border: 1px solid #2a2b2e;
    background-color: #1f2126;
    background-image: url("../images/icon/exclamation.svg?update=1");
    border-radius: 0;
    font-size: 13px;
    color: #ffffff;
    line-height: 20px;
    padding: 15px 25px 15px 50px;
    background-position: 18px center;
    background-repeat: no-repeat;
    background-size: 19px;
    display: none;
    z-index: 100006;
}
/* NOTIFICATION */

/* BLOG */
.blog{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.blog_index{
    padding: 0 0 60px;
}
.blog-back{
    width: fit-content;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    background-position: left center;
    background-size: 15px;
    background-image: url("../images/icon/back.svg");
    background-repeat: no-repeat;
}
.blog-back:hover{
	text-decoration: underline;
}
.blog-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.blog__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 30px 0 0 0;
    gap: 30px;
}
.managerblog__row{
    gap: 30px;
    margin: 40px 0 0;
    justify-content: left;
}
.blog__item{
    width: calc(33.3% - 20px);
    height: auto;
    border: 1px solid #1f2126;
    padding: 20px;
    box-sizing: border-box;
    transition: .2s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog__item:hover{
	border: 1px solid rgb(255, 255, 255, 0.6);
    transition: .2s;
}
.blog__item-poster{
    width: 100%;
    height: 230px;
    float: left;
    object-position: center;
    object-fit: cover;
}
.blog__item-post{
    width: 100%;
    height: auto;
    float: left;
    object-position: center;
    object-fit: cover;
}
.blog__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    margin: 20px 0 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0f0f14;
}
.blog__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0 0;
    padding: 0;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog__item-readmore{
    width: calc(50% - 10px);
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0;
    margin: 20px 0 0;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .2s;
    justify-content: center;
}
.blog__item-readmore:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
.services__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services__section__box{
    width: calc(50% - 20px);
    height: auto;
}
.blog__section .services__section__box{
    width: 100%;
}
.blog__section .services__section__box:nth-child(2){
    margin: 30px 0 0 0;
}
.services__section-description {
    width: 100%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 25px 0 0;
}
.services__section-description p, .services__section-description span{
    width: 100%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
}
.services__section-description h3{
    width: 100%;
    height: auto;
    float: left;
    text-transform: uppercase;
    margin: 15px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}
.services__section-description h2{
    width: 100%;
    height: auto;
    float: left;
    text-transform: uppercase;
    margin: 25px 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}
.services__section-description ul, .services__section-description ol{
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    margin: 0;
}
.services__section-description ul > li, .services__section-description ol > li{
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    color: #ffffff;
    text-align: left;
    color: #929292;
}
.services__section-description ul > li{list-style: disc;margin: 1px 0 0 19px;width: calc(100% - 19px);}
.services__section-description ol > li{list-style: auto;margin: 1px 0 0 17px;width: calc(100% - 17px);}
.services__section-description ul > li > strong, .services__section-description ol > li > strong{
    color: #ffffff;
}
.services__section-description b{
    width: 100%;
    height: auto;
    float: left;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #ffffff;
}
.services__section-description dl{
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
}
.services__section-description dl > dt{
    width: 100%;
    height: auto;
    float: left;
    margin: 12px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}
.services__section-description dl > dd{
    width: calc(100% - 40px);
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
}
.services__section__cta{
    width: 100%;
    height: auto;
    float: left;
    box-sizing: border-box;
    background-color: rgb(21, 26, 26);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(31, 33, 37);
    border-image: initial;
    padding: 25px;
    transition: 0.2s;
}
.services__section__cta__box{
	width: 50%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-end;
}
.services__section__cta__box h3 {
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    text-align: left;
    text-transform: uppercase;
}
.services__section__cta__box p {
    width: 70%;
    height: auto;
    float: left;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
    margin: -8px 30% 0 0;
}
.services__section__cta__box a{
	width: 40%;
	height: 45px;
	float: right;
	cursor: pointer;
	font-size: 14px;
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255, 255, 255);
	border-image: initial;
	padding: 0px;
	transition: 0.2s;
}
.services__section__cta__box a:hover{
	color: rgb(21 26 26);
	background-color: rgb(255, 255, 255);
}
.services__keywords{
     width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.services__keywords{
    font-size: 14px;
    color: #929292;
}
/* BLOG */

/* GALLERY */
.gallery{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.gallery-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.gallerynav_list {
    width: 100%;
    height: auto;
    float: left;
    border: 2px solid #1F2125;
    padding: 10px;
    box-sizing: border-box;
    background-color: #151a1a;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 30px 0 0 0;
    transition: .2s;
}
.gallerynav_list li{
    width: 20%;
    height: auto;
    float: left;
}
.gallerynav_list li > a{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    padding: 15px 0;
    text-transform: uppercase;
    border: 1px solid #151a1a;
    box-sizing: border-box;
}
.gallerynav_list li.active > a{
	background-color: rgb(31 33 38);
	color: #ffffff;
	border: 1px solid #2a2b2e;
}
.gallery__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 30px 0 0 0;
    gap: 30px;
}
.managergallery__row{
    gap: 35px;
    margin: 40px 0 0;
    justify-content: left;
}
.gallery__item{
    width: calc(33.3% - 20px);
    height: auto;
    position: relative;
}
.gallery__item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background-color: rgb(15 15 20 / 30%);
    background-image: url("../images/icon/search.svg");
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
}
.gallery__item:hover::before{
    opacity: 1;
    transition: .3s;
}
.gallery__item-poster{
    width: 100%;
    height: 230px;
    float: left;
    object-position: center;
    object-fit: cover;
}
.gallery__item-delete {
    width: 35px;
    height: 35px;
    float: right;
    background-color: rgb(31, 33, 38);
    background-image: url(../images/icon/delete.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(42, 43, 46);
    border-image: initial;
    background-position: center center;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    transition: .3s;
}
.gallery__item:hover .gallery__item-delete{
    opacity: 1;
    transition: .3s;
}
/* GALLERY */

/* PORTFOLIO */
.portfolio{
    width: 100%;
    height: auto;
    float: left;
    padding: 120px 0 60px;
}
.portfolio-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.portfolio__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 30px 0 0 0;
    gap: 35px;
}
.managerportfolio__row{
    gap: 35px;
    margin: 40px 0 0;
    justify-content: left;
}
.portfolio__item{
    width: calc(50% - 20px);
    height: auto;
    position: relative;
}
.portfolio__item-widget{
    width: 100%;
    height: auto;
    float: left;
}
.portfolio__item-poster{
    height: 350px;
    float: left;
    object-position: center;
    object-fit: cover;
}
.portfolio__item-delete {
    width: 35px;
    height: 35px;
    float: right;
    background-color: rgb(31, 33, 38);
    background-image: url(../images/icon/delete.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(42, 43, 46);
    border-image: initial;
    background-position: center center;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    transition: .3s;
}
.portfolio__item:hover .portfolio__item-delete{
    opacity: 1;
    transition: .3s;
}
/* PORTFOLIO */

/* INSURANCE */
.insurance{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-image: url('../images/poster/estimate.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0 120px;
    box-sizing: border-box;
    align-content: center;
    align-items: center;
    position: relative;
}
.insurance::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0F1014;
    opacity: 0.6;
}
.insurance-title {
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}
.insurance-subtitle {
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 23px;
    margin: 25px 0 0 0;
    position: relative;
}
.insurance-description {
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 26px;
    margin: 25px 0 0 0;
    position: relative;
}
.insurance__buttons{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 0 0;
}
.insurance__buttons a{
    width: 250px;
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .2s;
    justify-content: center;
}
.insurance__buttons a:hover{
    background-color: #ffffff;
    color: #0F1014;
    transition: .2s;
}
/* INSURANCE */

/* INSURANCE */
.insuranceCompanies{
    width: 100%;
    height: auto;
    float: left;
    padding: 40px 0;
    background-color: #151a1a;
    border-bottom: 1px solid #1f2126;
    border-top: 1px solid #1f2126;
}
.insuranceCompanies-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}
.insuranceCompanies__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 0;
}
.insuranceCompanies p{
    width: fit-content;
    height: auto;
    color: #8d8d8d;
    font-weight: 600;
    font-size: 16px;
}
/* INSURANCE */

/* ACCIDENT */
.accident{
    width: 100%;
    height: auto;
    float: left;
    padding: 60px 0;
}
.accident-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.accident__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.accident__item{
    width: 23.5%;
    height: auto;
    margin: 40px 0 0 0;
    border: 2px solid #1F2125;
    padding: 25px;
    box-sizing: border-box;
    background-color: #151a1a;
}
.accident__item b{
    width: 100%;
    height: auto;
    float: left;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
}
.accident__item h3{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    margin: 15px 0 0 0;
}
.accident__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0 0;
}
/* ACCIDENT */

/* CLAIM */
.claim{
    width: 100%;
    height: auto;
    float: left;
    padding: 70px 0 0;
}
.claim-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.claim-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 23px;
    margin: 15px 0 0;
}
.claim__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 10px;
}
.claim__item{
    width: 32%;
    height: auto;
    margin: 40px 0 0 0;
    background-color: #161719;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #1F2125;
}
.claim__item-icon{
	border: 2px solid #1F2125;
	box-sizing: border-box;
	background-color: #151a1a;
	width: 65px;
	height: 65px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.claim__item-icon i{
	font-size: 30px;
	color: #ffffff;
}
.claim__item p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    margin: 25px 0 0 0;
}
.claim__item span{
    width: 100%;
    height: auto;
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0 0;
}
/* CLAIM */

/* LEGAL RIGHT */
.legalright{
    width: 100%;
    height: auto;
    float: left;
    background-color: #151a1a;
    padding: 70px 0;
    background-image: url('https://bluesky-cogcms.cdn.imgeng.in/media/hzshdvtt/martins-group-approved-bodyshop-berkshire-and-hampshire.jpg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: 50% 100%;
}
.legalright__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.legalright__item{
    width: 50%;
    height: auto;
}
.legalright__item-title{
    width: 90%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
}
.legalright__item-description{
    width: 90%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    margin: 15px 0 0;
}
.legalright__item-important{
	width: 90%;
	height: auto;
	float: left;
	padding: 25px;
	box-sizing: border-box;
	background-color: #0f0f14;
	margin: 30px 0 0 0;
}
.legalright__item-important p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}
.legalright__item-important span{
	width: 100%;
	height: auto;
	float: left;
	color: #dddddd;
	font-size: 13px;
	font-weight: 400;
	text-align: left;
	line-height: 21px;
	margin: 15px 0 0;
}
.legalright__item-call{
    width: 250px;
    height: 45px;
    float: left;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .2s;
    justify-content: center;
    margin: 30px 0 0 0;
}
/* LEGAL RIGHT */

/* CHOOSE */
.choose{
    width: 100%;
    height: auto;
    float: left;
    padding: 60px 0;
    background-color: #151a1a;
}
.choose-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.choose-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 23px;
    margin: 15px 0 0;
}
.choose__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 0 0;
}
.choose__item{
    width: 49%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.choose__box{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    background-color: #0f0f14;
    border: 1px solid #1f2126;
}
.choose__block:nth-child(1){
	border: 2px solid #1F2125;
	box-sizing: border-box;
	background-color: #151a1a;
	width: 65px;
	height: 65px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.choose__block:nth-child(1) i{
	font-size: 30px;
	color: #ffffff;
}
.choose__block:nth-child(2){
    width: calc(100% - 85px);
    height: auto;
}
.choose__block:nth-child(2) p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
}
.choose__block:nth-child(2) span{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: normal;
    margin: 7px 0 0;
}
.choose__item-poster{
    width: 100%;
    height: auto;
    float: left;
    object-fit: cover;
    object-position: center;
}
/* CHOOSE */

/* PROBLEMS */
.problems{
    width: 100%;
    height: auto;
    float: left;
    padding: 70px 0 60px;
}
.problems-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}
.problems-description{
    width: 100%;
    height: auto;
    float: left;
    color: #dddddd;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 23px;
    margin: 15px 0 0;
}
.problems__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0 0 0;
}
.problems__item{
    width: calc(50% - 15px);
    height: auto;
    background-color: #0f0f14;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #1F2125;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: left;
    gap: 20px;
}
.problems__item-icon{
	border: 2px solid #1F2125;
	box-sizing: border-box;
	background-color: #151a1a;
	width: 65px;
	height: 65px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.problems__item-icon i{
	font-size: 30px;
	color: #ffffff;
}
.problems__item p{
    width: fit-content;
    height: auto;
    float: left;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    margin: 25px 0 0 0;
}
/* PROBLEMS */