/* RESET Default CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------- */

/* Fonts */

@font-face { 
    font-family: "Roboto-Regular";
    src: url('../fonts/Roboto-Regular.ttf'); 
}

@font-face { 
    font-family: "Roboto-Bold";
    src: url('../fonts/Roboto-Bold.ttf'); 
}

@font-face { 
    font-family: "Roboto-Light";
    src: url('../fonts/Roboto-Light.ttf'); 
}

/* --------------------------------- */

/* Global */

body {
    font-family: "Roboto-Regular";
    overflow-x: hidden;
}

h1,
strong {
    font-family: "Roboto-Bold";
}

h2 {
    font-family: "Roboto-Regular";
}

:root {
    --blue: #1c32fd;
    --green: #3efa8f;
    --orange: #ffca24;
    --def-margin-left: 35px;
}

.max-width {
    max-width: 1248px;
    margin: auto;
}

.btn_style1 {
    border-radius: 30px;
    border:solid 3px var(--blue);
    padding: 10px 25px;
    font-family: "Roboto-Bold";
    color: var(--blue);
    display: inline-block;
    transition: all 500ms;
    background-color: transparent;
    font-size: 20px;
    background-color: white;
}

p {
    line-height: 22px;
}

.bg-arrow {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .heading {
        max-width: 50%;
        margin: auto;
    }

    .bg-arrow {
        display: inherit;
    }
}

/* --------------------------------- */

/* Header */
.top_header {
    font-family: "Roboto-Bold";
    transition: background 300ms;
    z-index: 10;
    background-color: white;
    border-bottom: solid 1px transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

.top_header.active {
    border-bottom: solid 1px rgba(0,0,0,0.1);
    background-color: white;
}

.top_header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 10px 20px;
    background-color: white;
}

.top_header .logo_holder svg {
    width: 200px;
}

.top_header .logo_holder .cls-1 {
    fill:var(--orange);
}
.top_header .logo_holder .cls-2 {
    fill:var(--blue);
}
.top_header .logo_holder .cls-3 {
    fill:var(--green);
}
.top_header .arrow-svg{
    fill:var(--blue);
}

.top_header .des_menu > ul{
    display: flex;
    justify-content: space-between;
    display: none;
}

.top_header .des_menu > ul > li{
    font-size: 16px;
    text-transform: uppercase;
    z-index: 10;
    position: relative;
}

.top_header .des_menu > ul > li > a {
    padding: 21px 16px;
    display: block;
    color: inherit;
    transition: all 300ms;
}

.top_header .sub_menu li a {
    transition: all 300ms;
}

.top_header.blue .des_menu > ul > li:hover > a,
.top_header.blue .des_menu .sub_menu li:hover a {
    color: var(--blue)
}
.top_header.orange .des_menu > ul > li:hover > a,
.top_header.orange .des_menu .sub_menu li:hover a {
    color: var(--orange)
}
.top_header.green .des_menu > ul > li:hover > a,
.top_header.green .des_menu .sub_menu li:hover a {
    color: var(--green)
}

.top_header .mob_menu {
    top: -100px;
    transition: all 300ms;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    background-color: black;
    z-index: 9;
    color: white;
}

.top_header .mob_menu.active {
    top: 59px;
    visibility: visible;
}

.top_header .mob_menu > ul > li a {
    display: block;
    padding: 10px 0;
    transition: all 300ms ease-in-out;
}

.top_header .mob_menu > ul > li a:hover {
    background-color: var(--green);
    color: white;
}

.top_header .mob_menu_btn span {
    width: 25px;
    height: 3px;
    display: block;
    background-color: black;
    transition: all 300ms;
}

.top_header .mob_menu_btn span:nth-child(2) {
    margin: 5px 0;
}

.top_header .mob_menu_btn:hover span,
.top_header .mob_menu_btn.active span{
    background-color: var(--green);
}

.top_header .container .sub_menu {
    display: none;
    top: 30px;
    transition: all 300ms;
}

.top_header .container .has_dropdown:hover .sub_menu {
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0px 11px 20px rgb(0 0 0 / 10%);
    border-radius: 24px;
    background-color: white;
    display: block;
    position: absolute;
    top: 46px;
}

.top_header .container .sub_menu li:not(:last-child) a {
    display: block;
    margin-bottom: 16px;
}


.top_header .mob_menu .sub_menu {
    background-color: #313131;
    display: none;
}

.top_header .mob_menu .has_dropdown.active .sub_menu {
    display: block;
}

.top_header .mob_menu .sub_menu a {
    display: block;
    padding: 8px;
}

@media only screen and (min-width: 768px) {
    .top_header,
    .top_header .container {
        background-color: transparent;
    }

    .top_header.active,
    .top_header.active .container {
        border-color: none;
    }

    .top_header .logo_holder svg {
        width: 250px;
    }

    .top_header .des_menu > ul{
        display: flex;
    }

    .top_header .mob_menu_btn,
    .top_header .mob_menu {
        display: none;
    }

    .top_header .container {
        padding: 0 20px;
    }

    .bg-arrow {
        position: absolute;
        width: 50%;
        top: -30%;
        right: -20%;
        z-index: 2;
    }
}

/* --------------------------------- */

/* Main Slider */

.slider {
    padding: 0 20px;
    background-image: url("../images/world_map_edit.jpg");
    background-repeat: no-repeat;
    margin-top: 60px;
    background-size: cover;
    background-position: center;
}


.slider .container {
    display: flex;
    align-items: center;
    z-index: 5;
    position: relative;
    height: calc(100vh - 65.48px);
}

.slider .slide {
    display: none;

}

.slider .slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1248px;
    margin: auto;
}

.slider .slide .img_holder{
    display: none;
}

.slider .slider_holder .slide > div {
    max-width: 1248px;
    /* margin: auto; */
}

.slider h1 {
    color: var(--blue);
    margin-bottom: 25px;
    font-size: 60px;
}

.slider p {
    line-height: 25px;
    margin-bottom: 35px;
    font-size: 17px;
}

.slider img {
    width: 100%;
    display: none;
}

.slider .btn_style1:hover {
    color: white;
    border-color: var(--blue);
    background-color: var(--blue);
}


.slider .owl-dot {
    outline: none;
}

.slider .owl-stage-outer {
    margin-bottom: 50px;
}

section.slider div.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top:150px;
}

.slider .owl-theme .owl-dots .owl-dot span{
    width: 100px;
    height: 3px;
    background-color: black;
    transition: all 300ms;
}

.slider .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color:var(--blue);
    height: 6px;
}

.slider .img_holder {
    visibility: hidden;
}

@media only screen and (min-width: 768px) {
    .slider {
        padding: 0;
        background-size: inherit;
    }

    .slider .slide .img_holder{
        display: block;
    }
    
    .slider .slider_holder .slide > div {
        max-width: 100%;
    }

    .slider p,
    .slider .btn_style1 {
        margin-left: var(--def-margin-left);
    }

    .slider h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    
    .slider h2 {
        font-size: 60px;
        margin-bottom: var(--def-margin-left);
    }
    
    .slider p {
        line-height: 30px;
        font-size: 20px;
        margin-bottom: 45px;
    }
    
    .slider .btn_style1 {
        margin-bottom: 30px;
    }

    .slider .slide {
        max-width: calc(100% - 40px);
    }

    .slider .img_holder {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        justify-content: flex-end;
        visibility: visible;
    }
    
    .slider .img_container {
        text-align: right;
        height: 100vh;
        justify-content: flex-end;
        position: relative;
        top: calc(68px + 20vh);
        max-width: calc(100% - 40px);
    }
    
    .slider .img_container img {
        max-width: 350px;
        position: relative;
        z-index: 20;
    }

}

@media only screen and (min-width: 1024px) {
    .slider .img_container {
        text-align: right;
        height: 100vh;
        justify-content: flex-end;
        position: relative;
        top: calc(68px + 20vh);
    }
    
    .slider .img_container img {
        max-width: 350px;
        position: relative;
        z-index: 20;
    }

    .slider img {
        display: inline-block;
    }

    .slider p {
        width: 50%;
    }
}

@media only screen and (min-width: 1248px) {
    .slider .slide {
        max-width: 1248px;
    }
    

    .slider .img_container {
        max-width: 1248px;
        top: calc(68px + 16vh);
    }

    .slider .img_container img {
        max-width: 430px;
    }
    
}


/* --------------------------------- */

/* expertise */

.expertise {
    position: relative;
}

.expertise header h1 {
    font-size: 50px;
    margin: 10px 0 50px 20px;
    color: var(--orange);
}

.expertise header h2 {
    font-size: 40px;
    margin-left: 20px;
}

.expertise .tab_slider h3 {
    font-family: "Roboto-bold";
    text-transform: capitalize;
}

.expertise p {
    margin-top: 5px;
    font-family: "Roboto-Light";
}

.expertise .expertise_container {
    margin-left: 20px;
    overflow: hidden;
}

.expertise .expertise_container .tabs_nav {
    margin-bottom: 30px;
}

.expertise .expertise_container .tabs_nav > a {
    font-size: 28px;
    margin-right: 11px;
}

.expertise .expertise_container .tabs_nav .active {
    color: var(--orange);
    font-family: "Roboto-Bold";
}

.expertise .expertise_container .tab_slider {
    transition: all 500ms;
    display: flex;
}

.expertise .expertise_container .tab_slider .item {
    width: calc(100vw - 40px);
    margin-right: 40px;
}

.expertise .expertise_container .tabs_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1248px;
    margin: auto;
}

.expertise .expertise_container .tabs_content li {
    width: calc(100% - 25px);
    margin-bottom: 30px;
    padding: 5px 5px 5px 20px;
    position: relative;
    line-height: 20px;
}


.expertise .expertise_container .tabs_content .service_border {
    border-radius: 100px;
    border: solid;
    height: 100%;
    display: inline-block;
    background-color: black;
    border: solid 1.5px black;
    position: absolute;
    left: 0;
    top: 0;
}

.expertise .service_bgs > div {
    width: 550px;
    height: 550px;
    display: inline-block;
    position: absolute;
    border: solid 3px black;
    border-radius: 50%;
    display: none;
    transition: all 2s;
    background-color: white;
}

.expertise .service_bgs > div > span {
    border-radius: 50%;
    background-color: var(--orange);
    display: inline-block;
    position: relative;
}

.expertise .service_bgs > div:first-child {
    left: -430px;
    transform: rotateZ(425deg);
    top: -200px;
}

.expertise .service_bgs > div:first-child span {
    right: -145px;
    width: 45px;
    height: 45px;
}

.expertise .service_bgs.active > div:first-child {
    transform: rotateZ(515deg);
}
.expertise .service_bgs.active > div:last-child {
    transform: rotateZ(346deg);
}

.expertise .service_bgs > div:last-child {
    top: 0;
    right: -430px;
    transform: rotateZ(260deg);
}
.expertise .service_bgs > div:last-child span {
    right: -106px;
    width: 70px;
    height: 70px;
}

@media only screen and (min-width: 768px) {
    .expertise .expertise_container .tabs_content li {
        width: calc(50% - 25px);
    }

    .expertise .expertise_container .tabs_nav > a {
        font-size: 30px;
        margin-right: 20px;
        font-family: "Roboto-Regular";
        transition: all 300ms;
    }
}

@media only screen and (min-width: 1500px) {
    .expertise .service_bgs > div {
        display: inherit;
    }
}

/* --------------------------------- */

/* Get Started */

.get_started {
    padding: 50px 20px;
    background-image: url("../images/dots.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.get_started .img_holder img {
    width: 100%;
    max-width: 430px;
    display: none;
}

.get_started .text_holder {
    text-align: left;
}

.get_started h1 {
    font-size: 50px;
    margin: 10px 0 50px 0;
    color: var(--green);
    margin-right: 15px;
}

.get_started h2 {
    font-size: 40px;
}

.get_started p {
    margin-bottom: 45px;
    margin-right: 15px;
}

.get_started .btn_style1 {
    color: var(--green);
    border-color: var(--green);
    margin-right: 15px;
}

.get_started .btn_style1:hover {
    color: white;
    border-color: var(--green);
    background-color: var(--green);
}

@media only screen and (min-width: 768px) {
    .get_started {
        padding: 50px 20px;
        background-image: url(../images/dots.jpg);
        background-size: cover;
        background-position-y: 200px;
        background-repeat: no-repeat;
    }

    .get_started > div {
        display: flex;
        justify-content: space-between;
    }

    .get_started .img_holder {
        width: 55%;
    }

    .get_started .img_holder img {
        display: inherit;
    }

    .get_started .text_holder {
        width: 35%;
        text-align: right;
        margin-top: 15%;
    }

    .get_started .text_holder {
        text-align: right;
    }
}

@media only screen and (min-width: 1248px) {
    .get_started {
        padding: 100px 20px;
        background-position-y: -50px;
    }
}

/* --------------------------------- */


/* Footer */

footer {
    background-color: black;
    color: white;
    padding: 50px;
}

footer > div {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

footer .social_container {
    font-size: 0;
}

footer .social_container a {
    display: inline-block;
    border-radius: 50%;
    background-color: white;
    color: black;
    width: 30px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    margin-right: 8px;
    transition: all 300ms;
}

footer .social_container a:hover {
    background-color: var(--green);
    color: white;
}

footer .social {
    order: 1;
    text-align: center;
}

footer .social > div:last-child {
    margin-top: 20px;
    font-size: 13px;
}

footer .footer_nav {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

footer .footer_nav h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

footer .footer_nav li {
    text-align: center;
    margin-bottom: 30px;
}

footer .footer_nav li a {
    display: block;
    margin-top: 8px;
    transition: all 300ms;
}

footer .footer_nav li a:hover {
    color: var(--green)
}

@media only screen and (min-width: 768px) {
    footer {
        padding: 60px 20px;
    }

    footer > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }

    footer .footer_nav {
        flex-flow: row;
    }

    footer .footer_nav li {
        margin-left: 30px;
        text-align: right;
    }

    footer .social {
        order: inherit;
        text-align: left;
    }

    footer .social > div:last-child {
        margin-top: 20px;
    }
}

/* --------------------------------- */


/* Contacts */
.contacts {
    padding: 180px 20px;
    background-image: url(../images/world_map_edit.jpg);
    background-repeat: no-repeat;
    margin-top: 60px;
    background-size: cover;
    background-position: center;
}

.contacts .container {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    align-items: center;
    align-content: center;
}

.contacts .text_holder {
    margin-bottom: 50px;
    margin: auto;
}

.contacts .text_holder h2 {
    font-size: 30px;
    font-family: "Roboto-Light";
}

.contacts .text_holder h1 {
    font-size: 30px;
    margin: 10px 0 10px 40px;
}

.contacts .text_holder h1 span{
    color: var(--blue);
}

.contacts .text_holder p {
    margin-left: 40px;
}

.contacts .text_holder p strong:first-child {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

/* .contacts .form_holder .input_holder,
.contacts .form_holder .text_area_holder {
    position: relative;
}

.contacts .form_holder label{
    position: absolute;
    top: 18px;
    left: 26px;
    font-family: "Roboto-Light";
    font-size: 20px;
    visibility: visible;
    cursor: text;
}

.contacts .form_holder .input_holder input,
.contacts .form_holder .text_area_holder textarea{
    border-radius: 30px;
    border: solid 3px black;
    padding: 12px 23px;
    outline: none;
    width: calc(100% - 52px);
    margin-bottom: 10px;
    font-family: "Roboto-Light";
    font-size: 20px;
    resize: none;
}

.contacts .input_holder input:focus + label,
.contacts .input_holder input:not(:placeholder-shown) + label,
.contacts .text_area_holder textarea:focus + label,
.contacts .text_area_holder textarea:not(:placeholder-shown) + label {
    visibility: hidden;
}

.contacts .form_holder .btn_holder {
    text-align: right;
    text-transform: uppercase;
}

.contacts .btn_style1 {
    background-color: white;
}

.contacts .btn_style1:hover {
    color: white;
    border-color: var(--blue);
    background-color: var(--blue);
}


.form_holder {
    background-color: transparent;
    width: 100%;
    height: 385px;
    perspective: 1000px;
}

.form_holder .card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.form_holder.active .card {
    transform: rotateY(180deg);
}

.form_holder form, .form_holder .form_success {
    position: absolute;
    width: 100%;
    height: 385px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.form_holder form {
    color: black;
}

.form_holder .form_success {
    background-color: white;
    transform: rotateY(180deg);
    display: flex;
    border-radius: 30px;
    border: solid 3px black;
    align-items: center;
}

.form_holder .form_success .check_holder {
    border: solid 5px var(--blue);
    color: var(--blue);
    display: inline-block;
    margin: auto;
    text-align: center;
    padding: 14px;
    border-radius: 50%;
    font-size: 25px;
    margin-bottom: 25px;
}

.form_holder .form_success h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.form_holder .form_success p {
    font-size: 15px;
    font-family: "Roboto-Light";
    line-height: 17px;
}

.form_holder .form_success > div {
    width: 55%;
    margin: auto;
    max-width: 220px;
} */


@media only screen and (min-width: 768px) {
    /* .form_holder {
        width: 385px;
    } */

    .contacts {
        padding: 210px 20px;
    }
    
    .contacts .container {
        flex-flow: row;
    }

    .contacts .text_holder h2 {
        font-size: 50px;
    }
    
    .contacts .text_holder h1 {
        font-size: 60px;
        margin: 10px 0 30px 40px;
    }
}



/* --------------------------------- */

/* expertise */

.services {
    margin-top: 68px;
    padding: 70px 18px 80px 18px;
    background-image: url(../images/world_map_edit.jpg);
    background-position: top;
    background-repeat: no-repeat;
}

.services header h1{
    font-size: 80px;
    text-align: center;
    margin-bottom: 86px;
}

.services.blue header h1,
.services.blue .services_holder > li h2 {
    color: var(--blue);
}
.services.orange header h1,
.services.orange .services_holder > li h2 {
    color: var(--orange);
}
.services.green header h1,
.services.green .services_holder > li h2 {
    color: var(--green);
}

.services .services_holder {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 21px;
         column-gap: 21px;
    padding-bottom: 80px;
}

.services .services_holder > li {
    padding-bottom: 21px;
}

.services .services_holder > li > div {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 11px 18px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    margin: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
}


.services .services_holder > li .img_holder {
    text-align: center;
    margin-bottom: 40px;
}

.services .services_holder > li i {
    font-size: 115px;
    margin-bottom: 50px;
}

.services .services_holder > li h2 {
    font-size: 28px;
    margin-bottom: 24px;
    word-break: break-word;
    line-height: 32px;
    font-family: "Roboto-Bold";
}

.services .services_holder > li li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 17px;
    margin-left: 18px;
}

.services .clear_space {
    height: 60px;
    width: 100%;
    content: ' ';
}

@media only screen and (min-width: 768px) {
    .services .services_holder {
        -moz-column-count: 2;
             column-count: 2;
    }
}

@media only screen and (min-width: 1024px) {
    .services .services_holder {
        -moz-column-count: 3;
             column-count: 3;
    }
}


/* --------------------------------- */


/* About Us */
.aboutus {
    padding: 165px 18px 125px 18px;
    background-image: url(../images/world_map_edit.jpg);
    background-repeat: no-repeat;
    background-position-y: 70px;
    background-position-x: top center;
}

.aboutus .container > div {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.aboutus .container > div:last-child {
    margin-top: 150px;
}

.aboutus .container .sec-1 div:first-child {
    max-width: 100%;
}

.aboutus .sec-1 h1, .aboutus .sec-1 h2 {
    font-size: 40px;
}

.aboutus .sec-1 h2 {
    margin-bottom: 50px;
    color: var(--blue);
}

.aboutus .sec-1 h2 div:first-child{
    text-align: center;
}

.aboutus .sec-1 h2 div:last-child{
    text-align: right;
}

.aboutus .sec-1 p {
    font-size: 20px;
    line-height: 33px;
}

.aboutus .sec-1 p a {
    color: var(--blue);
    font-family: "Roboto-Bold";
}

.aboutus .img_holder {
    position: relative;
    z-index: 3;
    display: none;
}

.aboutus .text_holder {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
}

.aboutus .sec-2 .text_holder div:nth-child(1) {
    text-align: left;
    font-family: "Roboto-Light";
}
.aboutus .sec-2 .text_holder div:nth-child(2) {
    text-align: center;
    font-family: "Roboto-Bold";
    color: var(--blue);
}
.aboutus .sec-2 .text_holder div:nth-child(3) {
    text-align: right;
    font-family: "Roboto-Bold";
}


@media only screen and (min-width: 768px) {
    .aboutus {
        padding: 250px 18px 250px 18px;
        background-image: url(../images/world_map_edit.jpg);
        background-repeat: no-repeat;
        background-position-y: 70px;
    }
    
    .aboutus .sec-1 h1, .aboutus .sec-1 h2 {
        font-size: 50px;
    }
    
    .aboutus .sec-1 h2 {
        margin-bottom: 40px;
        color: var(--blue);
    }

    .aboutus .sec-1 p {
        font-size: 24px;
        line-height: 38px;
    }

    .aboutus .container .sec-1 > div:first-child, 
    .aboutus .container .sec-2 > div:last-child  {
        max-width: calc(50%);
    }

    .aboutus .img_holder {
        max-width: 45%;
        display: block;
    }

    .aboutus .img_holder img {
        width: 100%;
    }
    
}

@media only screen and (min-width: 1024px) {
    .aboutus .container .sec-1 > div:first-child,
    .aboutus .container .sec-2 > div:last-child {
        max-width: calc((100% - 430px) - 100px);
    }

    .aboutus .sec-1 h1, .aboutus .sec-1 h2 {
        font-size: 60px;
    }
    
    .aboutus .sec-1 h2 {
        margin-bottom: 70px;
        color: var(--blue);
    }

    .aboutus .img_holder {
        max-width: 430px;
        display: block;
    }

    .aboutus .sec-2 .text_holder {
        width: 100%;
        font-size: 35px;
        line-height: 45px;
    }
    
}

@media only screen and (min-width: 1248px) {
    .aboutus .sec-1 h1, .aboutus .sec-1 h2 {
        font-size: 70px;
    }

    .aboutus .sec-2 .text_holder {
        width: 100%;
        font-size: 45px;
        line-height: 55px;
    }
    
}


/* --------------------------------- */