*{
    margin:0; 
    padding:0; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.3s;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.3s;
}

/* Placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:16px;
}
::-moz-placeholder { /* Firefox 19+ */
  font-size:16px;
}
:-ms-input-placeholder { /* IE 10+ */
  font-size:16px;
}
:-moz-placeholder { /* Firefox 18- */
  font-size:16px;
}

@font-face {
    font-family: 'opensans_extrabold';
    src: url('../fonts/opensans/opensans-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/opensans/opensans-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_semibold';
    src: url('../fonts/opensans/opensans-semibold-webfont.woff2') format('woff2'),
         url('../fonts/opensans/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_bold';
    src: url('../fonts/opensans/opensans-bold-webfont.woff2') format('woff2'),
         url('../fonts/opensans/opensans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_regular';
    src: url('../fonts/opensans/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'muli_bold';
    src: url('../fonts/muli/muli-bold-webfont.woff2') format('woff2'),
         url('../fonts/muli/muli-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'muli_semibold';
    src: url('../fonts/muli/muli-semibold-webfont.woff2') format('woff2'),
         url('../fonts/muli/muli-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'muli_regular';
    src: url('../fonts/muli/muli-webfont.woff2') format('woff2'),
         url('../fonts/muli/muli-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root{
  --blueColor: #255fdb;
  --darkBlueColor: #021124;
  --mediumBlueColor: #1b3a67;
  --textColor: #636363;
  --darkTextColor: #1a1a1a;

}

html, body{height:100%;}
html{ scroll-behavior: smooth; }

body{
    padding-top: 122px;
    font: 18px muli_regular;
    color: var(--textColor);
}

li{list-style:none;}
ul{margin:0px;}
img{ display: block; }

.container{
    margin: 0 auto;
    transition: 0.3s;
    position: relative;
    width: 1280px;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

.container *{transition:0.3s;}

a,
a:hover{text-decoration:none;}    

.whatsBtn{
    background: #0cc042;
    display: flex;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    font-size: 30px;
    color: #fff;
    bottom: 50px;
    z-index: 996;
    right: 20px;
    text-align: center;
    animation: animate 3s linear infinite;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.whatsBtn .icon{
    fill: #fff;
    width: 30px;
}

.whatsBtn:hover{ text-decoration: none; }
.whatsBtn.up{ bottom: 100px; }

#menuToggle{
    display: none;
    font-size: 26px;
    background: none;
    border: 0;
    color: #fff;
    margin-right: 20px;
    padding: 0 10px 0 0;
}

@keyframes animate{
    0%{ box-shadow: 0 0 0 0 rgba(12,192,66,.7); }
    40%{ box-shadow: 0 0 0 15px rgba(12,192,66,0); }
    80%{ box-shadow: 0 0 0 15px rgba(12,192,66,0); }
    100%{ box-shadow: 0 0 0 0 rgba(12,192,66,0); }
}

.upBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    border-radius:4px;
    right: 18px;
    font-size: 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    background: #000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index:990;
}
.upBtn:hover{ text-decoration: none; }

.upBtn .icon{
    transition: 0.0s !important;
    fill: #fff;
    width: 18px;
}

.upBtn,
.cd-is-visible, 
.cd-fade-out, 
.no-touch .upBtn:hover{ transition: 0.3s; }

.cd-is-visible{
    visibility: visible;
    opacity: 1;
}

.cd-fade-out:hover,
.upBtn:hover{ opacity: 1; }

.marker{
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

section .preTitle{
    background: url(../img/subTitleDet.webp) no-repeat 0 6px;
    text-transform: uppercase;
    color: var(--blueColor);
    display: block;
    font-size: 15px;
    padding-left: 18px;
    margin-bottom: 10px;
}

section .sectionTitle{
    font: 58px opensans_bold;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

section strong{
    font-family: muli_semibold;
    color: var(--blueColor);
}

.whatsappbtn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #11a147;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: pulse 2.0s infinite;
    transition: transform 0.3s;
}
.whatsappbtn:hover{ transform: scale(1.1); }

.whatsappbtn img{
    width: 30px;
    height: 30px;
    filter: invert(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pointer{
    display: block;
    position: absolute;
    top: -122px;
    left: 0;
    width: 1px;
    height: 1px;
}
#aboutUs .pointer{top: -144px;}

/* OWL Carousel ------------------------------------ */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}


/* Header ---------------- */
.header{
    background: var(--darkBlueColor);
    height: 122px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .9);
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header .container .logo{ width: 120px; }
.header .container .logo img{ width: 100%; }

.header #mainNav ul{
    display: flex;
    justify-content: space-between;
}

.header #mainNav ul a{
    color:#fff;
    text-transform: uppercase;
    font: 16px muli_semibold;
    margin: 0 10px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.header #mainNav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #255fdb;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header #mainNav ul a:hover{ color: #255fdb; }
.header #mainNav ul a:hover::after{ transform: scaleX(1); }
/* end: Header ---------------- */

#mainAnimation img{ width: 100%; }

/* Partners ------------------ */
#partnes{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -60px auto 0;
    padding-bottom: 90px;
}

#partnes .partner{
    position: relative;
    box-shadow: 0 0 12px rgba(0, 0, 0, .2);
    border-radius: 12px;
    background: #fff;
    width: calc((100% / 3) - 40px);
    text-align: center;
    padding: 30px 30px 90px 30px;
    border-bottom: 5px solid var(--blueColor);
}

#partnes .partner strong{
    font: 26px muli_semibold;
    color: var(--darkTextColor);
    letter-spacing: -0.5px;
}

#partnes .partner .img1,
#partnes .partner .img2{
    position: absolute;
    bottom: 36px;
    left: 50%;
    margin-left: -140px;
}

#partnes .partner .img2{ opacity:0; }

#partnes .partner:hover{ background: var(--blueColor); }
#partnes .partner:hover strong{ color: #fff; }
#partnes .partner:hover .img1{ opacity:0; }
#partnes .partner:hover .img2{ opacity:1; }
/* end: Partners ------------------ */


/* About Us ------------------ */
#aboutUs{
    display: flex;
    justify-content: space-between;
}

#aboutUs .colOne{
    width: 50%;
    display: flex;
    justify-content: space-between;
}

#aboutUs .colOne img{ width: 100%; }

#aboutUs .colOne .photo01{ width: 344px; position: relative; }
#aboutUs .colOne .photo01 img{ border-left: 7px solid var(--blueColor); }

#aboutUs .colOne .phone{
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    background: var(--blueColor);
    display: flex;
    position: absolute;
    top: 38px;
    right: -266px;
    width: 364px;
    height: 100px;
    align-items: center;
    justify-content: center;
}

#aboutUs .colOne .phone .image{
    display: flex;
    border: 2px solid #fff;
    width: 34px;
    border-radius: 50%;
    height: 34px;
    justify-content: center;
    align-items: center;
}

#aboutUs .colOne .phone .image .icon{
    width: 76%;
    stroke: #fff !important;
    fill: #fff !important;
    stroke-width: 30 !important;
}

#aboutUs .colOne .phone .number{
    display: block;
    color: #fff;
    font-size: 25px;
    position: relative;
    padding-left: 30px;
}

#aboutUs .colOne .phone .number::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 82%;
    background: rgba(255, 255, 255, .5);
    top: 5px;
    left: 15px;
}

#aboutUs .colOne .photo02{ width: 230px; padding-top: 166px; }
#aboutUs .colOne .photo02 img{ border-right: 7px solid var(--blueColor); }

#aboutUs .colOne .photo02 .target{
    display: block;
    background: url(../img/separate.webp) repeat-x 26px 0;
    margin-top: 30px;
}

#aboutUs .colOne .photo02 .target .iconbg{
    display: flex;
    background: var(--blueColor);
    width: 80px;
    height: 72px;
    justify-content: center;
    align-items: center;
}

#aboutUs .colOne .photo02 .target .iconbg .icon{ fill: #fff; width: 50px; }

#aboutUs .colTwo{
    width: 47%;
    display: flex;
    align-items: center;
}

#aboutUs .colTwo .sectionTitle{
    color: var(--darkTextColor);
    line-height: 1;
    font-size: 48px;
}
/* end: About Us ------------------ */


/* Services ------------------ */
#services{
    background: url(../img/servicesBG3.webp) no-repeat 0 0 fixed #061932;
    margin-top: 100px;
    padding: 45px 0 60px;
    position: relative;
}

#services .sectionTitle{
    color: #fff;
    text-align: center;
    font: 50px opensans_bold;
    letter-spacing: -1px;
}

#services .allServices{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#services .service{
    width: calc((100% / 4) - 15px);
    overflow: hidden;
    border-radius: 10px;
    padding: 26px 20px;
    position: relative;
}

#services .service::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--blueColor);
    height: 100%;
    width: 100%;
}

#services .service figure{
    position: relative;
    z-index: 2;
    display: block;
}

#services .service figure::before{
    content: "";
    background: #fff;
    opacity: .1;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -56px;
    right: -22%;
}

#services .service figure img{
    display: block;
    margin: 0 auto;
}

#services .service h3{
    position: relative;
    z-index: 2;
    color: #fff;
    justify-content: center;
    margin: 16px 0;
    height: 80px;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    text-align: center;
    font: 26px opensans_bold;
    line-height: 30px;
}

#services .service .text{
    position: relative;
    z-index: 2;
    border-top: 1px solid #fff;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    line-height: 21px;
    padding: 24px 0 6px;
    height: 110px;
}

#services .service:hover{ background: #fff; }
#services .service:hover .text{ color: var(--blueColor); }
#services .service:hover::before{ height: 61%; }
#services .service:hover figure::before{
    top: -106px;
    right: -30px;
    width: 125%;
    height: 320px;
    border-radius: 0;
}
/* end: Services ------------------ */


/* Technology ------------------ */
#technology{ position:relative; }
#technology.container{ padding: 50px 140px; }

#technology .sectionTitle{
    font: 48px opensans_regular;
    color: var(--mediumBlueColor);
    line-height: 1;
    text-align: center;
    margin-bottom: 50px;
}

#technology .sectionTitle span{ font-family: opensans_bold; }

#technology .allLogos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 40px;
}

#technology .allLogos img{ width:calc((100% / 3) - 30px); max-width: 300px; }


/* Differentials ------------------ */
#differentials{
    background: url(../img/bg2.webp) no-repeat 0 0 #f5f7f9;
    padding: 50px 0;
    border-top: 1px solid #c9c9c9;
    position: relative;
}

#differentials .container{ padding: 0 150px; }

#differentials .sectionTitle{
    color: var(--darkTextColor);
    font-size: 41px;
    margin-top: -10px;
}

#differentials .allDifferentials{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.allDifferentials .differential{
    width: calc((100% / 3) - 14px);
    background: url(../img/differentialBG1.webp) no-repeat right 0 #1c1d22;
    position: relative;
    border-radius: 24px;
    padding: 46px 30px 160px;
    border: 10px solid transparent;
}

.allDifferentials .differential:hover{ border-color: #0a59da; }

.allDifferentials .differential .icon{
    width: 70px;
    display: block;
    margin: 0 auto;
}

.allDifferentials .differential .icon1 .st0,
.allDifferentials .differential .icon2 .st0{
    fill:none;
    stroke:var(--blueColor);
    stroke-width:1;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
}

.allDifferentials .differential .icon1 .st1,
.allDifferentials .differential .icon2 .st1{
    fill:none;
    stroke:var(--blueColor);
    stroke-width:1;
    stroke-linejoin:round;
    stroke-miterlimit:10;
}

.allDifferentials .differential .icon3,
.allDifferentials .differential .icon4,
.allDifferentials .differential .icon5,
.allDifferentials .differential .icon g path{ fill: var(--blueColor) }

.allDifferentials .differential > p{
    font-size: 15px;
    color: #a9a9ab;
    text-align: center;
    position: absolute;
    bottom: 30px;
    height: 90px;
    width: 100%;
    left: 0;
    padding: 0 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.allDifferentials .differential:nth-child(even){ background: url(../img/differentialBG2.webp) no-repeat 0 0 #0a59da; }
.allDifferentials .differential:nth-child(even):hover{ border-color: #1c1d22; }

.allDifferentials .differential:nth-child(even) > p{ color: #fff; }
.allDifferentials .differential:nth-child(even) .icon1 .st0,
.allDifferentials .differential:nth-child(even) .icon2 .st0,
.allDifferentials .differential:nth-child(even) .icon1 .st1,
.allDifferentials .differential:nth-child(even) .icon2 .st1{ stroke:#fff; }

.allDifferentials .differential .icon3,
.allDifferentials .differential .icon5,
.allDifferentials .differential .icon g path{ fill: #255fdb; }

.allDifferentials .differential:nth-child(even) .icon4,
.allDifferentials .differential:nth-child(even) .icon6 g path{ fill: #fff; }



/* Testimonials ------------------- */
#testimonials{ padding: 50px 0; }
#testimonials .owl-nav{ display:none; }

#testimonials .sectionTitle{
    font-size: 50px;
    text-align: center;
    color: var(--mediumBlueColor);
}

#testimonials .item{
    padding: 30px 30px 70px 30px;
    box-shadow: 0 0 13px rgba(0, 0, 0, .2);
    border-radius: 15px;
    margin: 10px;
    position: relative;
}

#testimonials .avatar{
    display: block;
    background: var(--mediumBlueColor);
    border-radius: 50%;
    padding: 6px;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

#testimonials .people .icon path{ stroke: #fff; }

#testimonials .people .name{
    font: 20px muli_bold;
    letter-spacing: -0.5px;
    height: 60px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#testimonials blockquote{
    line-height: 1.2;
    text-align: center;
    display: flex;
    margin-bottom: 20px;
    height: 130px;
    align-items: center;
}

#testimonials .stars{ text-align: center; }
#testimonials .stars svg{ fill: var(--mediumBlueColor) !important; }

#testimonials .quote{
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--mediumBlueColor);
    width: 70px;
    height: 42px;
    padding: 10px;
    border-radius: 10px 0;
    text-align: center;
}

#testimonials .quote .icon{ fill: #fff; height:100%; }
#testimonials .owl-dots{ padding-top: 20px; }


/* Certificates ------------------ */
#certificates{ background: #f8f9fe; padding: 50px 0; }

#certificates .sectionTitle{
    color: var(--mediumBlueColor);
    text-align: center;
    font-size: 48px;
}

#certificates .allCertificates{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

#certificates .certificate{
    background: #fff;
    width: calc((100% / 3) - 20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 10px;
}
#certificates .certificate:hover{ box-shadow: 0 0 20px rgba(0, 0, 0, .4); }

#certificates .certificate img{ margin: 0 auto; }



/* Prices ------------------ */
#prices{ padding: 50px 0; position: relative; }

#prices .sectionTitle{
    width: 100%;
    font-size: 50px;
    color: var(--blueColor);
    text-align: center;
    margin-bottom: 0;
}

#prices .container{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#prices .plan{
    border: 8px solid #f3f3f3;
    border-radius: 6px;
    width: 396px;
}

#prices .plan h3{
    background: url(../img/pricing-bg1.png) no-repeat 0 bottom var(--blueColor);
    color: #fff;
    height: 170px;
    background-size: contain;
    display: flex;
    justify-content: center;
    padding-top: 40px;
    font: 48px opensans_extrabold;
    letter-spacing: -2px;
    border-radius: 8px 8px 0 0;
}

#prices .description{
    padding: 16px;
    line-height: 1.2;
    text-align: center;
    height: 114px;
    margin-bottom: 20px;
}

#prices .list{
    padding: 0 20px 20px 20px;
    display: block;
    margin: 0 auto;
    width: 282px;
}

#prices .list li{
    background: url(../img/yes.webp) no-repeat 0 1px;
    font: 18px muli_bold;
    padding: 4px 0 0 32px;
    min-height: 30px;
    line-height: 1;
    margin-bottom: 10px;
}

#prices .list li.no{ background-image: url(../img/no.webp); }

#prices .btn{
    display: block;
    margin: 12px auto 30px;
    background: var(--blueColor);
    border-radius: 4px;
    width: 232px;
    color: #fff;
    line-height: 1;
    padding: 14px;
    text-align: center;
    font-family: 'muli_bold';
    border: 2px solid transparent;
}

#prices .btn:hover{
    border-color: var(--blueColor);
    color: var(--blueColor);
    background: none;
}



/* Contact ---------------------------- */
#contact{
    background: #023a9b;
    position: relative;
    padding: 50px 0 0;
    margin-top: 100px;
}

#contact .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#contact .image{
    background: url(../img/men.webp) no-repeat 0 0;
    width: 480px;
    background-size: cover;
    height: 620px;
    margin: -150px 30px 0 0;
}

#contact form{ width: 440px; }

#contact form h5{
    font: 34px opensans_bold;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.1;
}

#contact form input[type="text"],
#contact form input[type="text"]:focus,
#contact form input[type="text"]:focus-visible,
#contact form input[type="text"]:hover,
#contact form textarea{
    border: 0;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    color: #585858;
    font-size: 16px;
    outline: none;
    margin-bottom: 10px;
}

#contact form textarea{ height: 120px; }

#contact form button{
    background: var(--blueColor);
    color: #fff;
    font: 20px opensans_bold;
    text-align: center;
    padding: 10px;
    border: 0;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}
#contact form button:hover{ background: #001644; }


/* Footer ------------- */
footer{
    background: var(--darkBlueColor);
    padding: 20px 0 0;
    margin-top: 1px;
}

footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container .colOne h6{
    width: 100%;
    color: #fff;
    font: 18px muli_regular;
    text-transform: uppercase;
    margin-bottom: 8px;
}

footer .container .colOne img{
    width: 152px;
    margin: 0 10px 0px 0;
    float: left;
}

footer .container .colOne img:last-of-type{ margin-left: 10px; }

footer .colTwo > a{
    color: #fff;
    display: flex;
    align-items: center;
}

footer .colTwo > a img{
    filter: invert(1);
    width: 20px;
    margin-right: 5px;
}

footer .colTwo > a .icon{
    width: 20px;
    stroke: #fff;
    margin-right: 5px;
}

footer .colTwo > a .instagram{
    width: 20px;
    margin-right: 5px;
}

footer .copy{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 14px;
    margin: 20px 0 15px;
}



/* Responsive ---------------------------- */

/* Desktop grande */
@media (max-width: 1440px){
	.container{ max-width: 1280px; }
}

/* Notebook */
@media (max-width: 1280px){
	.container{ max-width: 1024px; }

    #partnes .partner{ width: calc((100% / 3) - 14px); }
    #partnes .partner strong{ font-size: 22px; }

    #partnes .partner .img1,
    #partnes .partner .img2{ margin-left: -95px; width: 200px; }

    #aboutUs .colOne{ width: 44%; margin-top: -46px; }
    #aboutUs .colTwo{ width: 52%; }

    #aboutUs .colTwo .sectionTitle{ font-size: 38px; }

    #aboutUs .colOne .photo01{ padding-top: 130px; width: 236px; }
    #aboutUs .colOne .photo02{ width: 176px; padding-top: 201px; }

    #aboutUs .colOne .photo02 .target{ margin-top: 12px; }
    #aboutUs .colOne .phone{ top: 91px ;right: -188px; }

    #aboutUs .colOne .photo02 .target .iconbg{ width: 90px; }

    #services .service{ width: calc((100% / 3) - 15px); }
    #technology.container{ padding: 50px; }
    #differentials .container{ padding: 0 70px; }

    #testimonials blockquote{ font-size: 14px; }
    #testimonials .people .name{ font-size: 17px; }
    #certificates .certificate img{ width: 100%; }
}


/* Tablet (paisagem) */
@media (max-width: 1024px) {
    .container{ max-width: 768px; }
    #mainNav{ display: none; }

    body{ padding-top: 78px; }
    .header{ height: 80px; }
    .header .container{ justify-content: left; }
    /*#menuToggle{ display: block; }*/

    .header .container .logo{
        width: 70px; 
        display: block; 
        margin: 0 auto;
    }

    #partnes .partner strong {
        font-size: 17px;
        letter-spacing: 0;
        line-height: 1;
        display: block;
    }

    #partnes .partner .img1,
    #partnes .partner .img2{ margin-left: -92px; width: 186px; }

    #aboutUs{ flex-wrap: wrap; flex-direction: column-reverse; }
    #aboutUs .colTwo{ width: 100%; }

    #aboutUs .colOne{ width: 86%; margin: 0 auto 0; }
    #aboutUs .colOne .photo01{ width: 52%; padding-top: 22%; }
    #aboutUs .colOne .photo02{ width: 45%; padding-top: 33%; }
    #aboutUs .colOne .phone{ top: 12%; right: -93%; }

    #services .service{ width: calc((100% / 2) - 15px); }
    #services .service h3{ padding: 0 14px; }

    #technology .sectionTitle{ font-size: 40px; }
    #technology.container{ padding: 50px 20px; }

    #differentials .container{ padding: 0 20px;}
    #differentials .sectionTitle{ font-size: 34px; }

    #contact{ margin-top: 0; padding: 50px 0; }
    #contact .image{ display: none; }
}

/* Tablet (retrato) */
@media (max-width: 768px) {
    .container{ max-width: 600px; }
    #partnes{ flex-wrap: wrap; padding-bottom: 40px; }
    #partnes .partner{ width: 100%; margin-bottom: 10px; }

    #partnes .partner .img1,
    #partnes .partner .img2{ margin-left: -140px; width: auto; }
    #partnes .partner strong{ font-size: 26px; margin-bottom: 10px;}

    #aboutUs .colOne{ width: 100%; }
    #aboutUs .colOne .photo01{ padding-top: 25%; }
    #aboutUs .colOne .photo02{ padding-top: 34%; }

    #technology .sectionTitle{ font-size: 36px; }
    #technology .allLogos img{ width: calc((100% / 2) - 30px); }

    #differentials .sectionTitle{ line-height: 1; }
    .allDifferentials .differential{ width: calc((100% / 2) - 14px); }

    #testimonials .sectionTitle,
    #certificates .sectionTitle,
    #prices .sectionTitle,
    #services .sectionTitle{ font-size: 40px; }

    #certificates .certificate{ width: calc((100% / 2) - 20px); }

    footer .colOne{ margin: 0 auto; text-align: center; }
    footer .colTwo{ margin: 40px auto 0; }
    footer .colTwo > a{ justify-content: center; }
    footer .copy{ text-align: center; }
}

/* Celular médio */
@media (max-width: 600px) {
    .container{ max-width: 480px; }
    #partnes{ margin: -26px auto 0; }
    #aboutUs .colTwo .sectionTitle{ font-size: 2.3rem; }
    #aboutUs .colOne {
        margin-top: 50px;
        width: 360px;
        overflow: hidden;
        height: 550px;
        border-radius: 10px;
    }

    #aboutUs .colOne .photo01 img{ border-radius: 10px; }
    
    #aboutUs .colOne .photo01{ width: 100%; padding-top: 110px; }
    #aboutUs .colOne .photo02{ display: none; }
    #aboutUs .colOne .phone{
        top: 0;
        right: 0;
        width: 360px;
        clip-path: none;
        border-radius: 10px;
    }

    #services .service{ width: 100%; }
    #technology .sectionTitle{ font-size: 28px; letter-spacing: -1px; }
    #technology .allLogos img{ width: auto; margin-bottom: 15px; }
    #technology .allLogos img:last-of-type{ margin-bottom: 0; }

    .allDifferentials .differential{ width: 100%; }
    #certificates .allCertificates{ justify-content: center; }
}

/* Celular pequeno */
@media (max-width: 480px) {
  .container{ width: 100%; }
    
  
}
