@font-face {
    font-family: "Magra-Regular";
    src: url(../fonts/Magra/Magra-Regular.ttf);
}
  
@font-face {
    font-family: "Magra-Bold";
    src: url("../fonts/Magra/Magra-Bold.ttf");
}

@font-face {
    font-family: "Merriweather-Regular";
    src: url(../fonts/Merriweather/Merriweather-Regular.ttf);
}
  
@font-face {
    font-family: "Merriweather-Bold";
    src: url("../fonts/Merriweather/Merriweather-Bold.ttf");
}

@font-face {
    font-family: "Merriweather-Light";
    src: url("../fonts/Merriweather/Merriweather-Light.ttf");
}
  

html {
    scroll-behavior: smooth;
}
section {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

input,
select,
button {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
}

button,
img:focus {
    outline: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    }

p {
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header{
    position: absolute;
    z-index: 99;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 15px;
    margin: auto;

/* max-width: 1480px; */
}

.headercontainer {
    background: rgb(255 255 255 / 59%);
    padding: 15px 0;
    margin-top: 25px;
    border-radius: 50px;
}

.headercontainer-other{
    /* background: rgb(255 255 255 / 90%); */
    background-color: #D4D4D4;
    padding: 15px 0;
    margin-top: 25px;
    border-radius: 50px;
}

.header-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.header-content .logo{
    display: flex;
    align-items: center;
    padding: 2px;
}

.header-content .logo img{
    width: 90%;
}

.header-content .menu ul{
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
}

.header-content .menu ul li{
    text-transform: uppercase;
}

.header-content .menu ul li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff015;
    transition: width .3s;
}

.header-content .menu ul li:hover::after {
    width: 100%;
    transition: width .5s;
}

/* .header-content .menu ul li:hover{
    border-bottom: 2px solid #fff015;
} */

.header-content .menu ul li a{
    font-family: "Magra-Regular";
    color: #064690;
    font-size: 20px;
}

.menu .drop-menu {
    display: none !important;
    position: absolute;
    /* background-color: #fff; */
    background: rgb(255 255 255 / 95%);
    min-width: 70px;
    width: 130px;
    margin-top: 3px;
    padding-top: 7px;
    padding-left: 7px;
    /* padding-bottom: 5px; */
}

.menu .drop-menu a{
    font-size: 16px !important;
}
.menu .drop-menu li{
    padding-bottom: 3px;
}

.header-content .menu .drop-menu li:hover::after {
    width: 80%;
    transition: width .5s;
}

/* .drop-menu-item {
    width: 100%;
} */

/* .drop-item:hover {
    color: #eee;
} */

.drop-menu-item a {
    color: #555;
}

.menu-item:hover .drop-menu {
    display: block !important;
}

.srb-eng{
    display: flex;
    column-gap: 10px;
}

.srb-eng a, .srb-eng p{
    font-family: "Magra-Regular";
    color: #064690;
    font-size: 20px;
}


.home-slider {
    position: relative;
}

.home-slider-content {
    position: absolute;
    top: 12vw;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translate(-50%);
    margin-top: 6%;
}

/* #home-slider{
    position: absolute;
    top: 0;
    width: 100%;
} */

#home-slider .item img{
    width: 100%;
}

.home-slider-content h1{
    font-family: "Merriweather-Light";
    text-align: center;
    font-size: 50px;
    border-bottom: 4px solid #FFF015;
    color: #fff;
    padding-bottom: 20px;
    line-height: 74px;
    letter-spacing: 3.4px;
}

.home-slider-content p{
    color: #fff;
    text-align: center;
    margin-top: 5%;
    font-size: 21px;
    font-family: "Merriweather-Light"; 
}

.owl-theme .owl-nav.disabled+.owl-dots{
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%);
    margin-top: 0 !important;
}

.owl-theme .owl-dots .owl-dot.active span{
    background: #FFF015;
}

.owl-theme .owl-dots .owl-dot span{
    background: #064690;
}

.image-block{
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.image-block h2{
    text-align: center;
    margin-top: 5%;
    font-size: 48px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 2px;

}

.image-block hr{
    width: 60%;
    /* height: 3px; */
    border: 2px solid #fff015;
}

.image-block p{
    text-align: center;
    font-size: 20px;
    font-family: "Magra-Regular";
    text-transform: lowercase;
    padding: 30px;
}

.image-block img{
    justify-self: center;
    display: flex;
    padding-bottom: 40px;
}

.image-block .link{
    justify-content: center;
    display: flex;
    /* margin-bottom: 50px; */
    background: #064690;
    width: 11%;
    padding: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-radius: 20px;
}

.image-block .link a{
    color: #fff;
    letter-spacing: 1.7px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
}

.creating{
    margin-top: 50px;
}

.creating h2{
    text-align: center;
    font-size: 38px;
    color:#064690;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    letter-spacing: 2.3px;
    font-weight: 500;
}

.creating .grid2{
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.creating .grid2 .image-grid{
    display: flex;
    justify-self: center;
}

.creating .grid2 .text-grid{
    display: flex;
    text-align: left;
    justify-content: center;
    flex-direction: column;
}

.creating .grid2 .text-grid h3{
    font-size: 40px;
    margin-bottom: 20px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 500;
    width: 38%;
    border-bottom: 3px solid #fff015;
    margin-left: 25%;
    margin-right: 0;
}


.creating .grid2 .text-grid p{
    font-size: 25px;
    font-family: "Magra-Regular";
    /* padding-right: 30%; */
    padding-left: 25%;
    padding-right: 0;
}

.creating .grid2 .text-grid:nth-child(2n) p{
    padding-left: 0%;
    padding-right: 30%;
}

.creating .grid2 .text-grid:nth-child(2n) h3{
    margin-right: 25%;
    margin-left: 0;
    width: 30%;
}

.safety{
    background-image: url(../image/safetybg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.safety .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 40px;
    background: rgb(255 255 255 / 80%);
    margin-bottom: 5%;
    margin-top: 7%;
}

.safety .section-container{
    padding: 7%;
}

.safety .section-image {
    top: -100px;
    position: absolute;
}

.safety .section-container h3{
    padding-top: 5%;
    font-size: 38px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 500;
    color:#064690;
    letter-spacing: 2.5px;
    padding-bottom: 2.2%;
}

.safety .section-container p{
    font-size: 20px;
    font-family: "Magra-Regular";
    padding: 25px;
    text-align: center;
}

.safety .section-container:last-child p{
    margin-bottom: 20px;
    padding-top: 0;
}

.partners h2{
    text-align: center;
    margin-top: 50px;
    font-size: 40px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 700;
    color:#064690;
    letter-spacing: 2.5px;

}

.partners hr{
    width: 17%;
    border: 2px solid #fff015;
}

.partners .partners-logo{
    display: flex;
    justify-content: center;
    column-gap: 15%;
    margin-top: 50px;
    margin-bottom: 5%;
}

footer{
    background-color: #064690;
}

footer form, .newsletter-form{
    display: flex;
}

footer .newsletter-container{
    padding-top: 40px;
    padding-bottom: 60px;
}

footer .newsletter-container .newsletter-text h4{
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 100;
    font-family: "Magra-Regular";
}

footer .newsletter-container .newsletter-text p{
    font-size: 24px;
    text-transform: uppercase;
    color: #FFF015;
    font-weight: 100;
    font-family: "Magra-Regular";
}

footer .newsletter-text{
    padding-right: 45px;
}

footer .newsletter-container input, .email-n{
    width: 400px;
    height: 40px;
    border-radius: 10px;
    border: transparent;
}

footer .newsletter-container input, .email-n::placeholder{
    padding-left: 10px;
    color: #9F9E9E;
}


footer .newsletter-container button, .subscribe{
    width: 200px;
    height: 40px;
    border-radius: 10px;
    border: transparent;
    background-color: #FFF015;
    font-size: 16px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    color: #064690;
    letter-spacing: 2px;
    font-weight: 600;
}

footer .newsletter-sub{
    padding-top: 15px;
}

footer .footer-meni .footer-about ul{
    display: flex;
    flex-direction: column;
    column-gap: 100px;
}

.footer-meni .footer-about ul li{
    text-transform: uppercase;
    padding-bottom: 15px;
}

/* .footer-meni .footer-about ul li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff015;
    transition: width .3s;
}

.footer-meni .footer-about ul li:hover::after {
    width: 100%;
    transition: width .5s;
} */

.footer-meni .footer-about ul li a{
    font-family: "Magra-Regular";
    color: #fff;
    font-size: 24px;
}

footer .footer-meni{
    display: flex;
    justify-content: space-around;
    padding-bottom: 60px;
}

footer .footer-contact h3{
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Magra-Regular";
    color: #fff;
    font-weight: 300;
}

footer .footer-contact .info{
    display: flex;
    margin-top: 15px;
}

footer .footer-contact .info img{
    padding-right: 10px;
}

footer .footer-contact .info a{
    color: #fff;
    font-family: "Magra-Regular";
    font-size: 16px;
    font-weight: 200;
}

footer .footer-social h3{
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Magra-Regular";
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
}

footer .footer-social img{
    padding-right: 5px;
}

footer .rights hr{
    width: 40%;
    border: 1px solid #fff015;
}

footer .rights p{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: "Magra-Regular";
    font-size: 16px;
}


.page-name{
    position: relative;
    padding-top: 15%;
    text-align: center;
    padding-bottom: 5%;
}

.page-name h1{
    font-size: 54px;
    color: #064690;
    text-transform: uppercase;
    font-family: "Magra-Regular";
}

.page-name p{
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Magra-Regular";
}

.page-name p .home-link{
    color: #FFF015;
}

.page-name p .breadcrumbs{
    color: #000;
}

.about{
    text-align: center;
}

.about h3{
    font-size: 30px;
    text-transform: uppercase;
    font-family: "Magra-Regular";
    padding-bottom: 2%;
}

.about h3 strong{
    color: #064690;
}

.about img{
    padding-bottom: 2%;
}

.about p{
    font-family: "Magra-Regular";
    font-size: 18px;
    padding-bottom: 10px;
}

.about .lastp{
    border-bottom: 3px solid #FFF015;
    padding-bottom:4%;
}

.about-blocks{
    text-align: center;
}

.about-blocks h2{
    padding-top: 3%;
    font-size: 36px;
    text-transform: uppercase;
    font-family: "Magra-Regular";
    color: #064690;
}

.about-blocks h3{
    text-transform: uppercase;
    font-size: 30px;
    padding-top: 10px;
    font-family: "Magra-Regular";
    padding-bottom: 3%;
}

.block .section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 40px;
    background: #F5F5F5;
    margin-bottom: 10%;
    margin-top: 5%;
}

.block .section-image {
    top: -110px;
    position: absolute;
}

.block .section-container h3 {
    padding-top: 5%;
    font-size: 38px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 500;
    color: #064690c2;
    padding-bottom: 1%;
}

.block .section-container ul li {
    font-size: 20px;
    font-family: "Magra-Regular";
    text-align: center;
    padding-bottom: 15px;
}

.block .section-container ul li:last-child {
    margin-bottom: 25px;
}

#message{
    color: #fff;
    font-family: "Magra-Regular";
}

.contact-container{
    background-color: #064690;
}

.contact-container .contact-text h4{
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    font-family: "Magra-Regular";
    font-weight: 300;
    padding-bottom: 20px;
}

.contact-container .contact-inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.contact-container .contact-inputs input[type=text]{
    width: 45%;
    padding: 13px;
    border-radius: 10px;
    border: transparent;
    margin-bottom: 10px;
    color: hwb(0 0% 100% / 0.205);

}

.contact-text{
    text-align: center;
    padding-top: 45px;
}

.contact-container .contact-inputs input[type=email]{
    width: 45%;
    padding: 13px;
    border-radius: 10px;
    border: transparent;
    margin-bottom: 10px;
}
  
.contact-container .contact-inputs input[type=email]{
    width: 45%;
    padding: 13px;
    border-radius: 10px;
    border: transparent;
    margin-bottom: 10px;
}

.contact-container .contact-inputs textarea{
    width: 45%;
    padding: 13px;
    border-radius: 10px;
    border: transparent;
    margin-bottom: 19px;
    height: 150px;
}

.contact-container .contact-inputs button[type=submit]{
    font-size: 20px;
    padding: 5px 35px;
    border-radius: 10px;
    border: transparent;
    text-transform: uppercase;
    background: yellow;
    color: #064690;
    font-family: "Magra-Regular";
}

.contact-grid-fourth .grid-desk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    justify-items: center;
}
  
.contact-grid-fourth .grid-desk .item {
    background: #F5F5F5;
    border-radius: 40px;
    padding: 50px;
    margin: 60px 0;
    margin-bottom: 15%;
    width: 70%;
    display: flex;
    flex-direction: column;
}
  
.contact-grid-fourth .grid-desk .item img {
    margin: 0 auto;
    display: block;
    width: 35%;
}
  
.contact-grid-fourth .grid-desk .item h4 {
    text-align: center;
    font-family: "Magra-Regular";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 15px;
    text-transform: uppercase;
}
  
.contact-grid-fourth .grid-desk .item p{
    font-family: "Magra-Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    display: inline-block;
}

.contact-grid-fourth .grid-desk .item a{
    font-family: "Magra-Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    color: #000;
}

.map{
    padding-bottom: 4%;
    text-align: center;
}

.about .title-service{
    border-bottom: 2px solid #FFF015;
}


#playground-slider{
    margin-bottom: 5%;
}
#playground-slider .owl-stage-outer .owl-stage img{
    width: auto !important;
}

#playground-slider img{
    border-radius: 40px;
}

#playground-slider .item{
    justify-items: center !important;
}
.about video{
    border-radius: 40px;
}

.about p{
    padding-left: 50px;
    padding-right: 50px;
}

.about-block{
    padding-top: 2%;
}

.about-block h3,
.about-block p{
    text-align: center;
    font-family: "Magra-Regular";
}

.about-block h3{
    font-size: 32px;
    color: #064690;
    text-transform: uppercase;
}

.about-block hr{
    width: 60%;
    border: 2px solid #fff015;
}

.about-block p{
    font-size: 20px;
    padding-bottom: 20px;
}



.offers{
    margin-top: 50px;
    margin-bottom: 10%;
}

.offers h2{
    text-align: center;
    font-size: 38px;
    color:#064690;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    letter-spacing: 2.3px;
    font-weight: 500;
    padding-bottom: 5%;
}

.offers .grid2{
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin-bottom: 5%;
    position: relative;
}

.offers .grid2 .image-grid{
    display: flex;
    justify-self: center;
}

.offers .grid2 .image-grid img{
    width: 500px;
    height: 400px;
}

.offers .grid2 .text-grid{
    display: flex;
    text-align: left;
    justify-content: center;
    flex-direction: column;
}

.offers .grid2 .text-grid h3{
    font-size: 30px;
    margin-bottom: 20px;
    font-family: "Magra-Regular";
    text-transform: uppercase;
    font-weight: 500;
    width: 45%;
    border-bottom: 3px solid #fff015;
    margin-left: 25%;
    margin-right: 0;
}


.offers .grid2 .text-grid p{
    font-size: 25px;
    font-family: "Magra-Regular";
    /* padding-right: 30%; */
    padding-left: 25%;
    padding-right: 0;
}

.offers .grid2 .text-grid:nth-child(2n) p{
    padding-left: 0%;
    padding-right: 30%;
}

.offers .grid2 .text-grid:nth-child(2n) h3{
    margin-right: 0;
    margin-left: 0;
    width: 45%;
}

.offers .grid2 .link {
    justify-content: center;
    display: flex;
    /* margin-bottom: 50px; */
    background: #064690;
    width: 10%;
    padding: 15px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    top: 106%;
    margin-bottom: 40px;
}

.offers .grid2 .link a{
   color: #FFF015;
   font-family: "Magra-Regular";
text-transform: uppercase;
}

#lights-slider img{
border-radius: 40px;
}

.offers .grid2 .link2 {
    justify-content: center;
    display: flex;
    /* margin-bottom: 50px; */
    background: #064690;
    width: 10%;
    padding: 15px;
    position: absolute;
    left: 55%;
    transform: translate(-50%);
    border-radius: 10px;
    top: 65%;
    margin-bottom: 40px;
}

.offers .grid2 .link2 a {
    color: #FFF015;
    font-family: "Magra-Regular";
    text-transform: uppercase;
}

.services-grid .grid-desk{
    display: grid;
    grid-template-columns: repeat(3, 33%);
}

.services-grid .grid-desk .item img{
    width: 160px;
    height: 160px;
}

.services-grid .grid-desk .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-grid .grid-desk .item .item-background {
    padding: 70px;
    padding-right: 110px;
    padding-left: 110px;
    background-color: #F5F5F5;
    border-radius: 40px;
}

.services-grid .grid-desk h3 a{
    font-size: 25px;
    color: #064690;
}

.services-grid .grid-desk .nolink {
    font-size: 25px;
    color: #064690;
}

.services-grid .grid-desk h3{
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-family: "Magra-Regular";
}

.services-grid{
    margin-bottom: 5%;
}



.mob-btn {
    display: none;
}
  
.home-page{
    padding-bottom: 3%;
}

.about-blocks .section-container img{
    width: 175px;
    height: 175px;
}

.about-blocks h3{
    padding-bottom: 5%;
}







@media only screen and (max-width: 1600px){

}

@media only screen and (max-width: 1450px){

    .headercontainer {
        padding: 5px 55px;
    }
    
    .home-slider-content h1 {
        font-size: 48px;
        line-height: 65px;
    }

    .home-slider-content p {
        font-size: 17px;
    }

    .image-block .link {
        width: 15%;
    }

}

@media only screen and (max-width: 1400px){

    .offers .grid2 .text-grid:nth-child(2n) h3 {
        width: 40%;
    }

    .offers .grid2 .text-grid h3 {
        font-size: 24px;
    }

}

@media only screen and (max-width: 1350px){

    .block .section-container h3 {
        padding-top: 6%;
    }

    .home-slider-content h1 {
        font-size: 40px;
    }


}

@media only screen and (max-width: 1300px){

    .home-slider-content p {
        font-size: 15px;
    }

    .creating .grid2 .text-grid:nth-child(2n) h3 {
        width: 35%;
    }

    .creating .grid2 .text-grid h3 {
        font-size: 30px;
    }

    .safety .section-container p {
        font-size: 15px;
    }

    footer .newsletter-container {
        padding-left: 30px;
    }

    .about video {
        width: 80%;
    }

    .offers .grid2 .text-grid:nth-child(2n) h3 {
        width: 45%;
    }

    .contact-grid-fourth .grid-desk .item a {
        font-size: 16px;
    }

    .services-grid .grid-desk .item .item-background {
        padding-right: 90px;
        padding-left: 90px;
    }

}

@media only screen and (max-width: 1150px){

    .home-slider-content h1 {
        font-size: 36px;
    }

    .home-slider-content p {
        font-size: 14px;
    }

    .image-block h2 {
        font-size: 40px;
    }

    .text-grid:nth-child(2n) p {
        padding-right: 15%;
    }

    .creating .grid2 .text-grid p {
        padding-left: 15%;
    }

    .creating .grid2 .text-grid h3 {
        margin-left: 15%;
    }

    .creating .grid2 .text-grid:nth-child(2n) p {
        padding-right: 15% !important;
    }

    .page-name h1 {
        font-size: 46px;
    }

    .about img{
        width: 85%;
    }

    .about h3 {
        font-size: 25px;
    }

    .about p {
        font-size: 16px;
    }

    .block .section {
        margin-bottom: 15%;
        margin-top: 8%;
    }

    .services-grid .grid-desk .item .item-background {
        padding-right: 70px;
        padding-left: 70px;
    }

    .services-grid .grid-desk .item img {
        width: 150px;
        height: 150px;
    }

    .offers .grid2 .image-grid img {
        width: 400px;
        height: 300px;
    }

    .offers .grid2 .text-grid:nth-child(2n) p {
        padding-right: 15%;
    }

    .offers .grid2 .text-grid p {
        padding-left: 15%;
    }

    .offers .grid2 .text-grid h3 {
        margin-left: 15%;
    }

    .offers .grid2 .text-grid:nth-child(2n) h3 {
        width: 55%;
    }

    .offers .grid2 .link {
        width: 15%;
        top: 110%;
    }

    .owl-carousel .owl-item img {
        width: 85%;
        justify-self: center;
    }

    .contact-grid-fourth .grid-desk .item {
        padding: 20px;
        margin: 45px 0;
        width: 85%;
    }

}

@media only screen and (max-width: 1050px){

    .header-content .menu ul li a {
        font-size: 14px;
    }

    .header-content .logo img {
        width: 50%;
    }

    .header-content {
        padding: 0 30px;
    }

    .srb-eng a, .srb-eng p {
        font-size: 16px;
    }

    .home-slider-content h1 {
        font-size: 26px;
        line-height: 35px;
        border-bottom: 2px solid #FFF015;
    }

    .home-slider-content p {
        font-size: 12px;
    }

    .image-block h2 {
        font-size: 28px;
    }

    .image-block p {
        padding: 20px;
    }

    .image-block .link {
        width: 25%;
    }

    .creating .grid2 .text-grid p {
        font-size: 16px;
    }

    .creating .grid2 .text-grid h3 {
        font-size: 24px;
    }

    .safety .section-image {
        top: -65px;
    }

    .safety .section-image img{
        width: 130px;
        height: 100px;
    }

    .safety .section-container p {
        font-size: 11px;
    }

    .safety .section-container h3 {
        font-size: 30px;
    }

    .safety .section-container:last-child p {
        margin-bottom: 0px;
    }

    .block .section-image {
        top: -130px;
    }

    .block .section {
        margin-bottom: 20%;
        margin-top: 10%;
    }

    footer .newsletter-container .newsletter-text h4 {
        font-size: 23px;
    }

    footer .newsletter-container .newsletter-text p {
        font-size: 14px;
    }

    footer .newsletter-container input, .email-n {
        width: 300px;
    }

    footer .newsletter-container button, .subscribe {
        width: 150px;
        font-size: 14px;
    }

    .footer-meni .footer-about ul li a {
        font-size: 20px;
    }

    footer .footer-contact h3 {
        font-size: 20px;
    }

    footer .footer-contact .info a {
        font-size: 14px;
    }

    footer .footer-social h3 {
        font-size: 20px;
    }

    footer .rights p {
        font-size: 12px;
    }

    .block .section-container ul li {
        font-size: 16px;
    }

    .about p {
        font-size: 14px;
    }

    .about-block p {
        font-size: 16px;
        padding-bottom: 20px;
    }

    .about-block h3 {
        font-size: 26px;
    }

    .offers .grid2 .text-grid:nth-child(2n) h3 {
        width: 70%;
    }

    .offers .grid2 .text-grid h3 {
        font-size: 20px;
    }

    .offers .grid2 .text-grid p {
        font-size: 16px;
    }

    .offers .grid2 .text-grid:nth-child(2n) p {
        padding-right: 5%;
    }

    .offers .grid2 .text-grid p {
        padding-left: 5%;
    }

    .offers .grid2 .text-grid h3 {
        margin-left: 5%;
    }

    .offers .grid2 .image-grid img {
        width: 350px;
        height: 250px;
    }

    .contact-container .contact-text h4 {
        font-size: 30px;
    }

    .contact-grid-fourth .grid-desk .item {
        padding: 30px;
        margin: 45px 0;
        width: 100%;
    }

    .services-grid .grid-desk .item img {
        width: 120px;
        height: 120px;
    }

    .services-grid .grid-desk h3 a {
        font-size: 20px;
    }

}

@media only screen and (max-width: 900px){

    .header-content .logo img {
        width: 60%;
    }




    .toggle-menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: inline-block;
        outline: none;
        padding: 0;
        pointer-events: initial;
        position: relative;
        vertical-align: middle;
        width: 30px;
        height: 30px;
        z-index: 10;
      }
    
      .toggle-menu span {
        background: #161718;
        content: "";
        display: block;
        height: 2px;
        left: calc(50% - 13px);
        position: absolute;
        top: calc(50% - 1px);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          -webkit-transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          transform 0.2s linear, -webkit-transform 0.2s linear;
        width: 26px;
      }
    
      .toggle-menu span:before,
      .toggle-menu span:after {
        background-color: #161718;
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          -webkit-transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
          transform 0.2s linear, -webkit-transform 0.2s linear;
        width: 26px;
      }
    
      .toggle-menu span:before {
        top: 9px;
      }
    
      .toggle-menu span:after {
        top: -9px;
      }
    
      .toggle-menu.active span {
        background-color: transparent;
        transition: background 0.2s ease-out;
      }
    
      .toggle-menu.active span:before,
      .toggle-menu.active span:after {
        transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
        transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
        transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out,
          -webkit-transform 0.2s 0.2s ease-out;
      }
    
      .toggle-menu.active span:before {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
      }
    
      .toggle-menu.active span:after {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
      }
    
      .mob-btn {
        display: block;
        position: absolute;
        z-index: 66;
        right: 15px;
        width: fit-content;
        height: 25px;
        left: 50%;
        transform: translate(-50%);
        
      }
    
      .tb-mob-nav {
        display: none;
        position: absolute;
        /* right: 0; */
        transform: translate(0%);
        /* bottom: 0; */
        top: 100px;
        /* top: 0; */
        background: rgb(255 255 255 / 98%);
        z-index: 60;
        width: 60%;
        /* height: 100vh; */
        padding: 50px;
        left: 50%;
        transform: translate(-50%);
    }

    .header-content .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .header-content .menu ul li a {
        font-size: 20px;
    }

    .header-content .menu ul li {
        padding-bottom: 5px;
    }

    .headercontainer-other .tb-mob-nav {
        background: rgb(212 212 212 / 98%);
    }

    .header-content {
        padding: 0 100px;
    }

    .image-block .link {
        padding: 14px;
    }

    .safety .section-image img {
        width: 90px;
        height: 65px;
    }

    .safety .section-image {
        top: -40px;
    }

    .page-name {
        padding-top: 20%;
    }

    .about h3 {
        font-size: 18px;
    }

    .about p {
        font-size: 12px;
    }

    .about-blocks h2 {
        font-size: 26px;
    }

    .section-container .section-image img {
        width: 100px;
        height: 100px;
    }

    .block .section {
        margin-bottom: 15%;
        margin-top: 7%;
    }

    .block .section-image {
        top: -70px;
    }

    .block .section-container h3 {
        font-size: 30px;
    }

    .block .section-container ul li {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .services-grid .grid-desk .item .item-background {
        padding-right: 80px;
        padding-left: 80px;
    }

    .about-block h3 {
        font-size: 18px;
    }

    .about-block p {
        font-size: 14px;
    }

    .offers .grid2 .text-grid h3 {
        width: 60%;
    }

    .offers h2 {
        font-size: 26px;
    }

    .offers .grid2 .link2 {
        width: 20%;
        left: 60%;
        top: 60%;
    }

}


@media only screen and (max-width: 780px){
    .header-content {
        padding: 0 30px;
    }

    .header-content .logo img {
        width: 45%;
    }

    .home-slider-content h1 {
        font-size: 16px;
        line-height: 22px;
    }

    .home-slider-content p {
        font-size: 9px;
    }

    .image-block h2 {
        font-size: 20px;
    }

    .image-block hr {
        border: 2px solid #fff015;
    }

    .image-block p {
        padding: 5px;
    }

    .image-block p {
        font-size: 16px;
    }

    .image-block img {
        padding-bottom: 15px;
    }

    .creating h2 {
        font-size: 26px;
        letter-spacing: 0.3px;
        font-weight: 600;
    }

    .creating .grid2 .text-grid:nth-child(2n) p {
        padding-right: 0% !important;
    }

    .creating .grid2 .text-grid:nth-child(2n) h3 {
        width: 55%;
    }

    .creating .grid2 .text-grid h3 {
        font-size: 18px;
    }


    .creating .grid2 .text-grid p {
        font-size: 12px;
    }

    .creating .grid2 .text-grid p {
        padding-left: 0;
    }

    .creating .grid2 .text-grid h3 {
        margin-left: 0;
    }

    .section-container .section-image img {
        width: 80px;
        height: 80px;
    }

    .safety .section-container h3 {
        font-size: 24px;
    }

    .safety .section-container h3 {
        padding-top: 10%;
    }

    footer form, .newsletter-form {
        flex-direction: column;
    }

    .socials img{
        width: 25%;
    }

    .tb-mob-nav {
        top: 75px;
    }

    .block .section-image {
        top: -50px;
    }


    .services-grid .grid-desk .item .item-background {
        padding-right: 60px;
        padding-left: 60px;
        text-align: center;
    }

    .offers .grid2 .image-grid img {
        width: 250px;
        height: 150px;
    }

    .offers .grid2 .text-grid h3 {
        font-size: 16px;
    }

    .offers .grid2 .text-grid p {
        font-size: 12px;
    }

    .offers .grid2 {
        margin-bottom: 10%;
    }

    .offers .grid2 .link {
        width: 25%;
        top: 108%;
        padding: 8px;
    }

    .page-name p {
        font-size: 16px;
    }

    .page-name h1 {
        font-size: 40px;
    }

    .offers .grid2 .link2 {
        padding: 10px;
    }

    .contact-container .contact-inputs input[type=text] {
        width: 70%;
    }

    .contact-container .contact-inputs input[type=email] {
        width: 70%;
    }

    .contact-container .contact-inputs textarea {
        width: 70%;
    }

    .contact-container .contact-inputs input[type=text] {
        width: 70%;
    }

    .contact-grid-fourth .grid-desk {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-grid-fourth .grid-desk .item img {
        width: 35%;
    }

    .contact-grid-fourth .grid-desk .item {
        width: 50%;
    }

    .contact-grid-fourth .grid-desk .item {
        margin: 15px 0;
    }

    .services-grid .grid-desk {
        grid-template-columns: repeat(1, 100%);
        row-gap: 30px;
    }

}


@media only screen and (max-width: 600px){

    #home-slider .item img {
        width: 100%;
        height: 400px;
    }

    .home-slider-content {
        top: 25vw;
        width: 75%;
    }

    .headercontainer {
        padding: 5px 10px;
    }

    .srb-eng a, .srb-eng p {
        font-size: 13px;
    }

    .tb-mob-nav {
        width: 100%;
    }

    .image-block h2 {
        font-size: 14px;
    }

    .image-block p {
        font-size: 12px;
    }

    .image-block .link {
        width: 44%;
    }

    .image-block .link a{
        font-size: 12px;
    }

    .creating h2 {
        font-size: 18px;
    }

    .creating .grid2 {
        grid-template-columns: repeat(1, 100%);
    }

    .creating .grid2 .text-grid:nth-child(2n) h3 {
        width: 100%;
        text-align: center;
    }
    .creating .grid2 .text-grid h3 {
        width: 100%;
        text-align: center;
    }

    .creating .grid2 .text-grid:nth-child(2n) p {
        text-align: center;
        margin-bottom: 40px;
    }

    .creating .grid2 .text-grid p {
        text-align: center;
    }

    .safety .section-container h3 {
        padding-top: 18%;
    }

    .safety .section-container h3 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .safety .section-container p {
        padding: 10px;
    }

    .partners h2 {
        margin-top: 30px;
        font-size: 24px;
    }

    .partners .partners-logo {
        margin-top: 10px;
    }

    footer .newsletter-container button, .subscribe {
        margin-top: 10px;
    }

    footer .footer-meni {
        justify-content: space-between;
        padding-bottom: 40px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .page-name {
        padding-top: 35%;
    }

    .page-name h1 {
        font-size: 34px;
    }

    .page-name p {
        font-size: 14px;
    }

    .about h3 {
        font-size: 16px;
    }

    .about p {
        padding-left: 0;
        padding-right: 0;
    }

    .about p {
        font-size: 10px;
    }

    .about-blocks h2 {
        font-size: 22px;
    }

    .about-blocks h3 {
        font-size: 24px;
        padding-top: 5px;
    }

    .block .section-container h3 {
        padding-top: 10%;
    }

    .block .section-container ul li {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .block .section {
        margin-bottom: 20%;
        margin-top: 10%;
    }

    .services-grid .grid-desk {
        grid-template-columns: repeat(1, 100%);
        row-gap: 30px;
    }

    .services-grid .grid-desk .item .item-background {
        padding: 30px;
    }

    .services-grid .grid-desk .item .item-background {
        padding-right: 60px;
        padding-left: 60px;
        text-align: center;
    }

    .about-block h3 {
        font-size: 14px;
    }

    .about-block p {
        font-size: 10px;
    }

    .offers .grid2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .offers .grid2 .text-grid{
        display: flex;
        align-items: center;
    }

    .offers .grid2 .text-grid:nth-child(2n) p {
        padding-right: 0;
        text-align: left;
    }
    .offers .grid2:nth-child(2n+1){
        flex-direction: column-reverse;
    }

    .offers .grid2 .text-grid p {
        padding-left: 0;
        text-align: left;
    }

    .offers .grid2 .text-grid h3 {
        width: 75%;
    }

    .offers .grid2 .text-grid h3 {
        margin-top: 10px;
    }
    
    
    footer{
        margin-top: 20%;
    }

    .offers .grid2 .link2 {
        width: 40%;
        left: 50%;
        top: 100%;
    }

    .offers .grid2 .text-grid h3 {
        width: 100%;
    }

    .offers .grid2 .text-grid:nth-child(2n) h3 {
        width: 100%;
    }

    .contact-container .contact-text h4 {
        font-size: 18px;
    }

    .contact-grid-fourth .grid-desk .item {
        width: 80%;
    }

    .map img{
        height: 200px;
    }

    .map {
        padding-top: 50px;
    }

   
    


}







