@font-face {
    font-family: "OpenSans Light";
    font-display: swap;
    src: url(../fonts/OpenSans-Light.ttf) format("truetype");
}


:root {
    --custom-blue: #1b3556;
    --custom-lightblue: #3a71ba;
    --custom-cream: #cfb193;
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    border: 1px solid #020887;
    background-color: #CAF0F8;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: #020887;
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: var(--custom-blue);
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--custom-lightblue);
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #020887;
    text-transform: uppercase;
}

.static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
}

.static-content img {
    max-width: 100%;
}

.static-content ul {
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 45px;
    display: flex;
    width: 100%;
}

.static-content li::before {
    content: "";
    background-image: url('../images/li_Style.png');
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: 36px;
    height: 30px;
    position: absolute;
    top: 9px;
    left: 0;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

.navbar-nav .active-link {
    color: #05b2ff;
}

a,
body {
    font-family: 'Montserrat', sans-serif;
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

header {
    background-color: #A9DBB8;
}

header .row.header-row {
    align-items: center;
    height: 100px;
}

.nav-link {
    color: #020887 !important;
    font-size: 21px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 0px;
    line-height: 1;
    margin-right: 25px;
    padding-top: 0px;
}

.navbar-brand {
    top: 25px;
    left: 70px;
    z-index: 100;
}

.navbar-nav {
    align-items: center;
}

.carousel-img {
    height: 980px;
    width: 100%;
    object-fit: cover;
}

.hero-design {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 1038px;
    width: 100%;
    object-fit: cover;
    z-index: 10000;
}

.hero-fluid {
    z-index: 105;
}

.hero-fluid::after {
    content: "";
    display: bloc;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #082F44B0;
}

.carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-bottom: 120px;
    z-index: 100000;
}

.hero-title {
    color: #fff;
    font-size: 170px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}

.static-content {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 22px;
}

.static-content.smaller {
    font-size: 20px;
    color: #000;
    text-align: center;
}

.standard-blue-text {
    font-family: 'Montserrat', sans-serif;
    color: #38369A;
    font-size: 21px;
    font-weight: 300;
}

.button-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.button-row .inv-btn {
    margin-left: 20px;
}

.standard-btn {
    background-color: #020887;
    border-radius: 100px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 42px 0px 42px;
    display: flex;
    width: max-content;
    min-height: 52px;
    align-items: center;
    color: #fff !important;
    box-shadow: 10px 10px 10px 10px #00000040;
    border: 1px solid transparent;
}

.standard-btn.noshadow {
    box-shadow: 0px 0px 0px inset transparent;
}

.standard-btn.inv-btn {
    border-color: #fff;
    background-color: transparent;
}

.hero-design-left {
    position: absolute;
    left: -50px;
    bottom: -220px;
    z-index: 10;
}

.home-main-content {
    position: relative;
    z-index: 106;
    margin-top: -121px;
    background: -webkit-linear-gradient(top, transparent 30%, #DFF9D9 70%);
}

.first-block-bg {
    background-color: #A9DBB8;
    -webkit-clip-path: polygon(51% 0%, 100% 0, 100% 43%, 100% 100%, 100% 100%, 100% 100%, 0 66%, 0 13%, 18% 0);
    clip-path: polygon(51% 0%, 100% 0, 100% 43%, 100% 100%, 100% 100%, 100% 100%, 0 66%, 0 13%, 18% 0);
    height: 915px;
    position: absolute;
    top: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
}

.second-block-bg {
    position: absolute;
    top: 580px;
    background-color: #c6ebbe;
    clip-path: polygon(0 63%, 0 0, 100% 37%, 100% 100%);
    -webkit-clip-path: polygon(0 63%, 0 0, 100% 37%, 100% 100%);
    left: 0px;
    right: 0px;
    height: 900px;
}

.third-block-bg {
    clip-path: polygon(0 0, 100% 66%, 100% 100%, 0 100%, 0 0);
    -webkit-clip-path: polygon(0 0, 100% 21%, 100% 100%, 0 100%, 0 0);
    position: absolute;
    top: 1144px;
    lefT: 0px;
    right: 0px;
    height: 1600px;
    background-color: #A9DBB8;
}

.third-block-bg img {
    position: absolute;
    width: 100%;
    height: 875px;
    object-fit: cover;
    bottom: 225px;
}

.forth-block-bg {
    background-color: #DFF9D9;
    -webkit-clip-path: polygon(20% 0, 100% 25%, 100% 100%, 0 100%, 0 26%);
    clip-path: polygon(17% 0, 100% 22%, 100% 100%, 0 100%, 0 22%);
    height: 1073px;
    position: absolute;
    top: 2503px;
    width: 100%;
    left: 0px;
    right: 0px;
}    

.fifth-block-bg {
    clip-path: polygon(72% 0, 100% 14%, 100% 100%, 0 100%, 0 15%);
    -webkit-clip-path: polygon(72% 0, 100% 14%, 100% 100%, 0 100%, 0 15%);
    height: 690px;
    bottom: 0px;
    background-color: #c6ebbe;
    position: absolute;
    left: 0px;
    right: 0px;
}

.home-last-design {
    position: absolute;
    z-index: 100;
    left: -50px;
    bottom: -29px;
}

.developer-img {
    height: 597px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.home-about-us-conti {
    padding-top: 6em;
}

.small-title {
    display: flex;
    width: fit-content;
    border-bottom: 1px solid #38369A;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #38369A;
    padding-right: 100px;
}

.small-title-diff {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #38369A;
    text-align: center;
}

.exra-leftp {
    padding-left: 4em;
}

.standard-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: #38369A;
    line-height: 1;
    margin-top: 35px;
}

.home-about-us-conti-design {
    position: absolute;
    right: -100px;
    top: 0px;;
}

.home-main-content {
    overflow: hidden;
}

.middle-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #000;
    line-height: 1; 
    text-align: center;
    padding-top: 3.5em;
}

.why-us-block {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.why-us-block img {
    margin-top: 6em;
    margin-bottom: 1.5em;
}

.whyustitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
    color: #020887;
}

.service-container {
    padding-top: 10em;
}

.service-title {
    color: #1D3557;
    margin-top: 0px;
    margin-bottom: 2.3em;
}

.one-service-block {
    background-color: #FFFFFF85;
    box-shadow: 10px 10px 30px -2px #00000040;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5em 2em;
}

.service-maintitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-short-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: justified;
    height: 160px;
}

.service-design {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 8px;
}

.service-design .dot {
    background-color: #38369A;
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

.service-design .line {
    background-color: #38369A;
    display: block;
    height: 2px;
    width: calc(100% - 24px);
}

.service-btn img {
    margin-left: 10px;
}

.service-btn span {
    line-height: 20px;
    padding-top: 6px;
}

.service-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0em;
    color: #38369A;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: center;
    flex-direction: row;
}

.tech-title {
    color: #000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding-top: 3.5em;
    text-shadow: #00000040 0px 4px;
    margin-bottom: 1.5em;
}

.noshadow.tech-title {
    text-shadow: #00000040 0px 0px;
    font-size: 50px;
}

.tech-title span {
    color: #020887;
    font-weight: 500;
}

.tech-small-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0em;
    color: #38369A;
    text-transform: uppercase;
    margin-bottom: 2.5em;
}

.one-tech-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 40px;
}

.one-tech-row img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    object-position: center;
}

.one-tech-row-content {
    display: flex;
    width: calc(100% - 100px);
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-left: 10px;
}

.one-tech-title {
    color: #000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: left;
    line-height: 1;
    text-shadow: 2px 7px 13px rgba(0,0,0,0.2);
}

.one-tech-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    text-shadow: 2px 7px 13px rgba(0,0,0,0.2);
}

.gyik-container {
    padding-top: 10em;
    padding-bottom: 10em;
    position: relative;
    z-index: 100;
}

.gyik-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0em;
    color: #070600;
}

.text-black {
    color: #000;
}

.card {
    background: #02088717;
    margin-bottom: 10px;
    border: 0px;
    border-radius: 0px;
    padding: 10px;
}

.card-header {
    background-color: transparent;
    border: 0px;
    padding: 0px;
}

.card-header:first-child {
    border-radius: 0px !important;
}
.card-header:last-child {
    border-radius: 0px !important;
}

.card-header .btn-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0em;
    color: #000;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.card-body {
    color: #000;
    font-size: 20px;
}

.card-header .btn-link[aria-expanded="true"] {
    font-weight: 600;
}

.card-header .btn-link[aria-expanded="true"] .plus {
    display: none;
}

.card-header .btn-link[aria-expanded="false"] .plus {
    display: block;
}

.card-header .btn-link[aria-expanded="false"] .minus {
    display: none;
}

.home-contact-container-fluid {
    background-color: #A8DADC;
    padding-top: 5em;
    padding-bottom: 8em;
}

.form-title {
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif;
    color: #070600;
}

.cw-control {
    min-height: 60px;
    border: 2px solid #020887;
    border-radius: 3px;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    color: #457B9DA1;
}

.cw-control::-ms-input-placeholder { /* Edge 12-18 */
    color: #457B9DA1;
}
  
.cw-control::placeholder {
    color: #457B9DA1;
}

.custom-checkbox {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.custom-checkbox a {
    color: #020887;
    font-weight: 400;
    text-decoration: none;
    font-weight: 500;
}

footer {
    background-color: #38369A;
    padding-top: 3em;
    padding-bottom: 1em;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    color: #CAF0F8 !important;
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0em;
    color: #CAF0F8 !important;
}

.dekstop-right {
    text-align: right;
}

.extra-top-p {
    padding-top: 3em;
}

.extra-top-sec {
    padding-top: 3em;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: 0em;
    color: #CAF0F8;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 19px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0em;
    color: #CAF0F8 !important;
}

.footer-contacts span {
    font-weight: 400;
    width: 190px;
}

.bottom-infos {
    padding-top: 4em;
}

.contacts-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-left: 5em;
    margin-bottom: 2em;
}

.contacts-contact-row .img-block {
    height: 80px;
    width: 80px;
    margin-right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #38369A;
}

.contacts-contact-row .img-block img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    object-position: center;
}

.contacts-contact-block {
    display: flex;
    width: calc(100% - 100px);
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.contacts-contact-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #000;
}

.contacts-contact-block span {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #000;
}

#contact-page .carousel-img {
    height: 560px;
}

#contact-page-content .home-last-design {
    z-index: 0;
}

#contact-page-content {
    padding-bottom: 10em;
}

#contact-page .hero-design {
    height: auto;
    width: auto;
    right: 0px;
    left: inherit;
    bottom: 85px;
    top: inherit;
}

.subpage-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 170px;
    font-weight: 500;
    line-height: 170px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    text-shadow: #00000040 4px 0px;
    position: absolute;
    top: 24%;
    left: 0px;
    right: 0px;
    z-index: 10000;
}

#contact-page-content.home-main-content {
    background: -webkit-linear-gradient(top, transparent 1%, #c6ebbe 99%);
}

.back-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #020887;
}

.back-btn span {    
    font-weight: 400;
    color: #133270;
}

#contact-page-content .home-about-us-conti {
    padding-top: 3em;
}

.contact-conti-row {
    padding-top: 7em;
}

.contact-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #38369A;
}

.contact-type {
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000;
    margin-top: 1.5em;
    margin-bottom: 0px;
}

.contact-data {
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000;
}

.contact-subpage-form {
    background: #FFFFFFCC;
    padding: 1.5em 2.5em;
    position: relative;
    z-index: 100;
    width: 98%;
}

.border-right {
    border-right: 2px solid #020887 !important;
}

.extra-left-p {
    padding-left: 4em;
}

.contact-subpage-form .cw-control {
    border: 0px;
    border-bottom: 1px solid #000000;
    border-radius: 0px;
    font-style: italic;
    color: #131E2B;
    font-weight: 300;
}

.contact-desc {
    padding: 2em 4em;
}

.contact-subpage-form .cw-control ::-ms-input-placeholder { /* Edge 12-18 */
    color: #131E2B80;
    font-style: italic;
    font-weight: 300;
}
  
.contact-subpage-form .cw-control ::placeholder {
    color: #131E2B80;
    font-style: italic;
    font-weight: 300;
}

.action-row {
    padding-top: 2em;
}

.action-row span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: justified;
    color: #000;
    margin-right: 15px;
}

.technology-dropdown {
    background-color: rgba(216,242,212,0.90);
    padding: 2em 3em;
    top: 59px;
    border: 0px;
}

.technology-dropdown-block {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
}

.dropdown-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding-top: 24px;
}

.dropdown-content {
    font-size: 18px;
    color: #000
}

.dropdown-left-block {
    padding-right: 45px;
    border-right: 1px solid #38369A;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: start;
    justify-content: flex-start;
    width: 350px;
}

.dropdown-btn {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0em;
    text-align: left;
    color: #38369A;
    display: flex;
    width: fit-content;
    text-decoration: underline;
    margin-top: 25px !important;
}

.navbar .dropdown-menu a.dropdown-btn {
    margin-top: 25px !important;
}

.dropdown-right-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    width: 600px;
}

.one-right-tech-block {
    display: flex;
    width: 33%;
    text-align: center;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-left: 25px;
}

.right-title {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0em;
    text-align: center;
    color: #38369A;
    width: 100%;
    text-transform: uppercase;
}

.navbar .dropdown-menu {
    left: -110%;
    right: 0px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
    width: fit-content;
}

.one-right-tech-block .one-tech-row  {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 7px;
}
.one-right-tech-block .one-tech-row img {
    width: 24px;
    height: 24px;
    object-position: center;
}
.one-right-tech-block .one-tech-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0em;    
    margin-bottom: 0px;
}

.noneeddesktop {
    display: none;
}
/*EOF*/