/*  RESET browser defaults (Eric Meyer Global Reset)*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol,
form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
.clearfloat {
	clear:both;
  	height:0;
  	font-size: 1px;
 	line-height: 0px;
}


/* END RESET browser defaults */

/* FONTS */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* GLOBAL */

.centered {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
  
}

.whatsapp{
	position: fixed;
    right: 15px;
    top: 90%;
	z-index: 3;
}

/* GLOBAL END */

/* CUSTOM STYLE */
body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size:12px;
}

#header{
	
}

#header .container{
	width:100%;
	display:flex;
	height:250px;
	position:relative;
	left:10%;
}

#header .container .content{
	display:flex; 
	align-items:center;
	gap:60px;
}

#header .container .content img{
	
}

#header .container .content .divider{
	display: flex;
    height: 70px;
    width: 2px;
    background-color: #E51B22;
}

#header .container .content .contacts{
	display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
	gap:13px;
}

#header .container .content .contacts .row{
	display: flex;
    justify-content: center;
    align-items: center;
	color: black;
    gap: 16px;
}

#header .container .content .contacts .row img{
	
}

@media (max-width:1450px){
	#header .container .content {
        gap: 50px;
    }
	
	#header .container .content img {
        height: 108px;
    }
	
	#header .container .content .divider {
        display: flex;
        height: 58px;
        width: 2px;
    }
	
	#header .container .content .contacts .row img {
        height: 86%;
    }
}

@media (max-width:1140px){
    #header .container {
        left: 0;
        justify-content: center;
    }	
}

@media (max-width:650px){
	#header .container .content img {
        height: 88px;
    }
}

@media (max-width:550px){
    #header .container .content {
        gap: 16px;
        flex-direction: column;
    }
	
	#header .container .content img {
        height: 120px;
    }
	
	#header .container .content .divider {
        display: flex;
        height: 1px;
        width: 312px;
    }
	
	#header .container .content .contacts {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 13px;
		height:unset;
    }
}	

/* BANNER */

#banner{
	color:black;
}

#banner .content{
	width: 90%;
    display: flex;
    position: relative;
    left: 5%;
	justify-content:center;
	align-items:center;
}

#banner .content .text{
	width: 24%;
    display: flex;
    font-size: 48px;
    align-items: center;
    position: relative;
    bottom: 35px;
}

#banner .content .image-form{
	display:flex;
	justify-content: end;
	position:relative;
	width:70%;
}

#banner .content .image-form img{
	position: relative;
    right: 596px;
    z-index: 2;
    width: 411px;
}

#banner .content .image-form .form{
	background-color: #DB1920;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	height: 680px;
	width:625px;
    position: absolute;
    top: -200px;
	gap:90px;
	z-index:1
}

#banner .content .image-form .form p{
	color:white;
	width:50%;
	text-align:center;
	font-size: 17px;
}

#banner .content .image-form .form form{
	display: flex;
    flex-direction: column;
	width:65%;
	gap:10px;
}

#banner .content .image-form .form form .data{
	border:none;
	border-radius:25px;
	padding-top:10px;
	padding-bottom:10px;
	padding-left: 20px;
    padding-right: 20px;
}

#banner .content .image-form .form form .message-data{
	border:none;
	border-radius:25px;
	padding-top:10px;
	padding-bottom:100px;
	padding-left: 20px;
    padding-right: 20px;
}

#banner .content .image-form .form form .submit_form{
	background-color: transparent;
    border: 2px solid white;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
}

#banner .content .image-form .form form .submit_form:hover{
	background-color: white;
    border: none;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #DB1920;
	cursor:pointer;
	transition:0.3s;
}

@media (max-width:1700px){
	#banner .content .text {
        width: 345px;
        display: flex;
        font-size: 43px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 524px;
        z-index: 2;
        width: 361px;
    }
	
	#banner .content .image-form .form {
        height: 610px;
        width: 550px;
        position: absolute;
        top: -189px;
    }
}

@media (max-width:1450px){
	#banner .content .text {
        width: 345px;
        display: flex;
        font-size: 35px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 442px;
        z-index: 2;
        width: 361px;
    }
	
	#banner .content .image-form .form {
        height: 610px;
        width: 468px;
        position: absolute;
        top: -189px;
    }
}

@media (max-width:1250px){
	#banner .content .text {
        width: 345px;
        display: flex;
        font-size: 32px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 374px;
        z-index: 2;
        width: 343px;
    }
	
	#banner .content .image-form .form {
        height: 610px;
        width: 400px;
        position: absolute;
        top: -215px;
    }
}

@media (max-width:1140px){
	#banner .content {
        width: 90%;
        left: 5%;
		flex-direction: column;
    }
	
	#banner .content .image-form .form {
        height: 700px;
        width: 400px;
        position: absolute;
        top: 0;
    }
	
	#banner .content .text {
        width: 80%;
        display: flex;
        font-size: 32px;
        text-align: center;
    }
	
	#banner .content .image-form {
        display: flex;
        justify-content: end;
        position: relative;
        width: 708px;
    }
}

@media (max-width:830px){
	#banner .content .image-form .form {
        height: 700px;
        width: 325px;
        position: absolute;
        top: 0;
		gap:40px;
    }
	
	#banner .content .text {
        width: 80%;
        display: flex;
        font-size: 32px;
        text-align: center;
    }
	
	#banner .content .image-form {
        display: flex;
        justify-content: end;
        position: relative;
        width: 635px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 300px;
        z-index: 2;
        width: 343px;
    }
	
	#banner .content .image-form .form p {
        color: white;
        width: 78%;
        text-align: center;
        font-size: 17px;
    }
}

@media (max-width:730px){
	#banner .content .image-form .form {
        height: 620px;
        width: 300px;
        position: absolute;
        top: 0;
    }
	
	#banner .content .text {
        width: 80%;
        display: flex;
        font-size: 32px;
        text-align: center;
    }
	
	#banner .content .image-form {
        display: flex;
        justify-content: end;
        position: relative;
        width: 540px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 281px;
        z-index: 2;
        width: 265px;
    }
}

@media (max-width:650px){
	#banner .content .image-form .form {
        height: 563px;
        width: 260px;
        position: absolute;
        top: 0;
    }
	
	#banner .content .text {
        width: 80%;
        display: flex;
        font-size: 32px;
        text-align: center;
    }
	
	#banner .content .image-form {
        display: flex;
        justify-content: end;
        position: relative;
        width: 441px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 245px;
        z-index: 2;
        width: 200px;
    }
}

@media (max-width:550px){
	#banner .content {
        flex-direction: column;
    }
	
	#banner .content .image-form {
        width: 75%;
        flex-direction: column;
		position: relative;
        top: 50px;
    }
	
	#banner .content .image-form img {
        position: relative;
        right: 0;
        z-index: 2;
        width: unset;
    }
	
	#banner .content .image-form .form {
        height: 563px;
        width: 100%;
        position: relative;
        top: 0;
    }
	
	#banner .content .image-form .form form {
        display: flex;
        flex-direction: column;
        width: 85%;
        gap: 10px;
    }
}

@media (max-width:430px){
	#banner .content .image-form {
        width: 90%;
    }
}

/* SERVICES */

#services{
	
}

#services .container{
    width: 100%;
    background-color: #000000;
    position: relative;
	z-index: -1;
}

#services .container .content{
	width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	height:100%;
}

#services .container .content .service{
    gap: 30px;
    display: flex;
    flex-direction: column;
	padding-top: 95px;
    padding-bottom: 70px;
	width:25%;
}

#services .container .content .divider{
    width: 3px;
    background-color: #E51B22;
    height: 170px;
    position: relative;
    top: 97px;
}

#services .container .content .service .title{
	color: #E51B22;
    width: 72%;
    position: relative;
    left: 14%;
    text-align: center;
	font-size: 17px;
}

#services .container .content .service .description{
	color: #FFFFFF;
    width: 75%;
    position: relative;
    left: 12.5%;
	text-align:center;
}

@media (max-width:1140px){
	#services{
		display:none;
	}
}

@media (max-width:550px){
	#services{
		display:flex;
	}
	
	#services .container .content {
        width: 80%;
        margin-left: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: unset;
        flex-direction: column;
        margin-top: 60px;
        margin-bottom: 60px;
    }
	
	#services .container .content .service {
        gap: 30px;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
        width: 100%;
        padding-top: 40px;
    }
	
	#services .container .content .divider {
        display:none;
    }
}

/* SERVICES-TABLET */

#services-tablet{
	display:none
}

#services-tablet .container{
    width: 100%;
    background-color: #000000;
    position: relative;
	z-index: 0;
}

#services-tablet .container .content{
	width: 40%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
	height:100%;
	overflow-x:hidden;
}

#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service{
    gap: 30px;
    display: flex;
    flex-direction: column;
	padding-top: 95px;
    padding-bottom: 70px;
}

#services-tablet .container .content .swiper-container{
	width:100%;
	position:relative;
}

#services-tablet .container .content .divider{
    width: 3px;
    background-color: #E51B22;
    height: 150px;
    position: relative;
    top: 19px;
}

#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service .title{
	color: #E51B22;
    width: 72%;
    position: relative;
    left: 14%;
    text-align: center;
	font-size: 17px;
}

#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service .description{
	color: #FFFFFF;
    width: 59%;
    position: relative;
    left: 20.5%;
	text-align:center;
}

#services-tablet .container .content .swiper-container .swiper-pagination-bullet {
    opacity: 1; /* Full opacity */
	background:red;
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

#services-tablet .container .content .swiper-container .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: white; /* Outer circle color */
    width: 12px; /* Outer circle size */
    height: 12px;
    position: relative;
}

#services-tablet .container .content .swiper-container.swiper-pagination-bullet-active {
    background-color: red; /* Replace with the actual color for active bullet */
}

#services-tablet .container .content .swiper-container .swiper-pagination-bullet .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 60px !important;
    left: 0 !important;
    width: 100% !important;
	position:absolute;
}


@media (max-width:1140px){
	#services-tablet{
	    display:flex;
    }
	
	#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service {
        gap: 30px;
        display: flex;
        flex-direction: column;
        padding-top: 45px;
        padding-bottom: 100px;
    }
	
	#services-tablet .container .content {
        width: 30%;
        margin-left: 7%;
    }
}

@media (max-width:550px){
	#services-tablet{
	    display:none;
    }
}


/* WHY US */

#whyus{

}

#whyus .container{
	display: flex;
    width: 100%;
}

#whyus .container .content{
	display:flex;
	width: 80%;
    margin-left: 10%;
	margin-top: 100px;
	margin-bottom:100px;
	gap:100px;
}

#whyus .container .content .title{
	width:230px;
	font-size:50px;
	position:relative;
}

#whyus .container .content .title p{
	margin-block-start: 0px;
    margin-block-end: 0px;
	position:absolute;
	top:-12px;
}

#whyus .container .content .subtitle-benefits{
	display: flex;
    flex-direction: column;
    gap: 30px;
	width:80%;
}

#whyus .container .content .subtitle-benefits .subtitle{
	
}

#whyus .container .content .subtitle-benefits .benefits-table{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 20px;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit{
	display:flex;
	gap:30px;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit .desktop-baloon{
	display:block;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit img{
	height:50px;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit .text{
	display: flex;
    flex-direction: column;
    gap: 10px;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit .text .title{
	width: 60%;
	font-size:17px;
	color:#DB1920;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit .text .description{
	width: 80%;
}

#whyus .container .content .subtitle-benefits .benefits-table .benefit .phone-baloon{
	display:none;
}

@media (max-width: 1410px){
	#whyus .container .content .subtitle-benefits .benefits-table{
        grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    }
}

@media (max-width:1140px){
	#whyus{
	    display:none;
    }
}

@media (max-width:550px){
	#whyus{
	    display:flex;;
    }
	
	#whyus .container .content .subtitle-benefits .benefits-table {
        display:flex;
		flex-direction:column;
		gap: 50px;
    }
	
	#whyus .container .content {
        gap: 32px;
        flex-direction: column;
        align-items: center;
		margin-top:50px;
		margin-bottom:50px;
    }
	
	#whyus .container .content .subtitle-benefits{
	    width:100%;
    }
	
	#whyus .container .content .title {
        width: 230px;
        font-size: 45px;
        position: relative;
		text-align:center;
    }
	
	#whyus .container .content .title p {
        position: unset; 
    }
	
	#whyus .container .content .subtitle-benefits .benefits-table .benefit .desktop-baloon{
	    display:none;
    }
	
	#whyus .container .content .subtitle-benefits .benefits-table .benefit .text .title {
        width: 100%;
        font-size: 17px;
        color: #DB1920;
        display: flex;
        text-align: start;
        gap: 14px;
    }
	
	#whyus .container .content .subtitle-benefits .benefits-table .benefit .text .description {
        width: 100%;
    }
	
	#whyus .container .content .subtitle-benefits .benefits-table .benefit .phone-baloon{
	    display:flex;
    }
}

/*  WHYUS TABLET */

#whyus-tablet{
	display:none;
}

#whyus-tablet .container{
	display: flex;
    width: 100%;
}

#whyus-tablet .container .content{
	display:flex;
	width: 85%;
    margin-left: 7.5%;
	margin-top: 150px;
	margin-bottom:20px;
	gap:50px;
}

#whyus-tablet .container .content .text{
    width:180px;
	position:relative;
    top: -32px;
}

#whyus-tablet .container .content .text .title{
	width:180px;
	font-size:35px;
	position:relative;
}

#whyus-tablet .container .content .text .subtitle{
	
}

#whyus-tablet .container .content .benefits-table{
	overflow-x:hidden;
	position:relative;
}

#whyus-tablet .container .content .benefits-table .swiper-wrapper .swiper-slide .benefit{
	display: flex;
    flex-direction: column;
	gap:30px;
}

#whyus-tablet .container .content .benefits-table .swiper-wrapper .swiper-slide .benefit .title{
	font-size: 17px;
    display: flex;
    gap: 18px;
    color: #DB1920;
	
}

#whyus-tablet .container .content .benefits-table .swiper-wrapper .swiper-slide .benefit .text {
	width:100%;
	position: unset;
}

#whyus-tablet .container .content .benefits-table .swiper-wrapper .swiper-slide .benefit .text .description{
	
}

#whyus-tablet .container .content .benefits-table .swiper-pagination-bullet{
	opacity:1 !important;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));	/* Active bullet color */
}

/* Styling for inactive bullets */
#whyus-tablet .container .content .benefits-table .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: black; 
    width: 12px; 
    height: 12px;
    position: relative;
}

#whyus-tablet .container .content .benefits-table .swiper-pagination-bullet:not(.swiper-pagination-bullet-active)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 8px; 
    height: 8px;
    background-color: white; 
    border-radius: 50%; 
}

#whyus-tablet .container .content .benefits-table .swiper-pagination-bullet-active {
    background-color: red;
}



@media (max-width:1140px){
	#whyus-tablet{
	    display:flex;
    }
	
	#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service .title {
        width: 100%;
        left: 0;
    }
	
	#services-tablet .container .content .swiper-container .swiper-wrapper .swiper-slide .service .description {
        width: 100%;
        left: 0;
        text-align: center;
    }
}

@media (max-width:550px){
	#whyus-tablet{
	    display:none;
    }
}


/* FOOTER*/

#footer{
	
}

#footer .contacts{
	background: #DB1920;
    width: 100%;
	height: 250px;
    display: flex;
    align-items: center;
}

#footer .contacts .content{
	width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: white;
    height: max-content;
	margin-top: 50px;
    margin-bottom: 50px;
}

#footer .contacts .content .contact-divider{
	height:123px;
	background-color: white;
	width:3px;
}

#footer .contacts .content .contact{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	gap:20px;
	text-align:center;
	width:25%;
}
	
#footer .contacts .content .contact .ipad-item3{
	display:none;
}

#footer .contacts .content .contact p{
	width:85%;
}

#footer .contacts .content .contact img{
	
}

#footer .copyright {
	height: 50px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
	gap: 55px;
}

@media (max-width:1200px){
	#footer .contacts .content .contact .ipad-item3{
		display:block;
	}
	
	#footer .contacts .content #item3{
		display:none;
	}
	
	#footer .contacts .content .contact {
		width:33.3%;
	}
	
	#footer .contacts .content .contact-divider{
		display:none;
	}
}

@media (max-width:640px){
	#footer .contacts {
		height:unset;
	}
	
	#footer .contacts .content {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
		margin-left:0;
		gap:45px;
    }
	
	#footer .contacts .content .contact {
        width: 100%;
    }
	
	.footer-divider{
		display:none;
	}
	
	#footer .copyright {
    height: 70px;
    gap: 1px;
    flex-direction: column;
    }
}




















