/****  font-family: "Roboto", sans-serif;  ****/


/*********** CSS Variables ***********/
:root {
    --primary_color: #08090A;   
    --cyan_color: #42F2F7; 
    --cyan_color2: #21BECE;
    --yellow_color: #F4B618;
    --yellow_color2: #F4B621;
    --white_color: #ffffff;
    --black_color: #000000;

    --button_arrow_hover_bg: rgba(8, 9, 10, 0.11);

    --border_color: rgba(28, 29, 29, 0.05); 
    --body_font: "Roboto", sans-serif;  

    --fw-900: 900;
    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    --fw-400: 400;
    --fw-300: 300;
    --fw-200: 200;

    --font_20: 20px;
    --font_24: 24px;
    --font_16: 16px;
}  
/*********** CSS Variables END ***********/

  
  
/*********** Common Style ***********/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}


html {
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    color: var(--primary_color);
    font-weight: var(--fw-400);
    font-size: var(--font_20);
    font-family: var(--body_font);
}
  
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after,
.nav:before,
.nav:after {
    display: table;
    content: " ";
}
  
.clearfix:after,
.container:after,
.row:after,
.nav:after {
    clear: both;
}

.row:after,
.row:before {
    display: none;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
} 

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    padding: 0;  
}

h1,
.h1,
.h1_design {
    font-size: 68px;
    line-height: 70px;  
    font-weight: 900;
}

h2,
.h2 {
    font-size: 65px;
    line-height: 66px;  
    font-weight: 900; 
    margin-bottom: 35px;
}
  
h3,
.h3 { 
    font-size: 40px;
    line-height: 48px;
    font-weight: var(--fw-500);  
}

h4,
.h4 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700; 
}

h5,
.h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700; 
}
  
h6,
.h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700; 
}

h1.hero_title,
.h1_style {  
    font-size: 51px;
    line-height: 58px;
}

p {
    margin: 0 0 26px 0;  
    line-height: 24px;
}

.intro-text,
.intro-text p {
    font-size: 24px;
    line-height: 30px; 
}
  
img {
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    height: auto;
}
  
a, a:visited {
    text-decoration: none;
    color: var(--primary_color);
    outline: none;
    transition: all ease-in 0.2s;
}
  
a:hover, a:focus {
    color: var(--yellow_color);
}

a:hover {
    outline: none;
}

:focus {
    outline: 2px solid var(--primary_color);  
    outline-offset: 4px;
}

.bg_black :focus {
    outline-color: var(--yellow_color);  
}

/* :focus {
    outline: 2px dotted var(--primary_color);
} */
  
a[href^=tel] {
    text-decoration: none;
}
  
ul,
ol {
    margin: 0 0 15px;
    padding: 0 0 20px;
}
      
.tt-none {
    text-transform: none;
}
  
.button {
    letter-spacing: 0;
    background-color: var(--cyan_color2);
    color: var(--primary_color);
    font-weight: var(--fw-700);
    display: inline-flex;
    font-size: var(--font_20);
    line-height: 19px;
    padding: 13px 20px; 
    border-radius: 6px; 
    align-items: center;
    transition: all ease-out 0.3s;
    border-radius: 49px;
}
  
.button:hover, .button:focus {
    background: var(--primary_color);
    color: var(--cyan_color2);
}

.button .arrow { 
    margin-left: 10px; 
    height: 35px;
    width: 35px;
    position: relative;
    background-color: rgba(8, 9, 10, 0.05);
    border-radius: 50%;
    transition: all ease-in 0.3s;
} 

.button:hover .arrow,
.button:focus .arrow {
    background-color: rgba(255, 255, 255, 0.11);
}

.button:hover .arrow svg path,
.button:focus .arrow svg path {
    fill: var(--cyan_color2);
}


.button .arrow svg { 
    position: relative; 
    transition: left ease-in 0.2s; 
}


.button .arrow.right svg {  
    left: 0;
}

.button:hover .arrow.right svg,
.button:focus .arrow.right svg {
    left: 8px;
}

.button .arrow.down svg {  
    top: 0;
    transition: top ease-in 0.2s;
}

.button:hover .arrow.down svg,
.button:focus .arrow.down svg {
    top: 8px;
}

 
.button + .button {
    margin-left: 10px;
}


.button.yellow {
    background: var(--yellow_color);
}

.button.yellow:hover,
.button.yellow:focus {
    background: var(--primary_color);
    color: var(--yellow_color);
}

.button.yellow:hover .arrow svg path,
.button.yellow:focus .arrow svg path {
    fill: var(--yellow_color);
}

.button.white-hover:hover .arrow svg path,
.button.white-hover:focus .arrow svg path {
    fill: var(--primary_color);
}

.button.white-hover:hover,
.button.white-hover:focus {
    background-color: var(--white_color);
    color: var(--primary_color);
}

.button.white-hover:hover .arrow,
.button.white-hover:focus .arrow {
    background-color: var(--button_arrow_hover_bg);
}  

  
  
/* Forn Inputs Style */
input,
textarea,
select {
    font-size: var(--font_16);
    font-weight: var(--fw-400);
    line-height: 24px;
    color: var(--primary_color);
    font-family: var(--body_font);
    border: 1px solid var(--primary_color);
    outline: none;
    font-size: 21px;
    line-height: 28px;
    padding: 17px 35px;
    width: 100%;
    border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary_color); 
    color: var(--purple_color4);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath id='Polygon_4' data-name='Polygon 4' d='M5.5,0,11,6H0Z' transform='translate(11 6) rotate(180)' fill='%234a4d5f'/%3E%3C/svg%3E%0A");
    background-position: right 30px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input {
    margin-bottom: 30px;
}

.form-input:last-child {
    margin-bottom: 0;
}

.form-submit input[type="submit"],
.form-submit input[type="button"],
.form-submit input[type="reset"] {
    width: auto;
    border: 0;
    cursor: pointer;
    transition: all ease-in 0.2s;
}

.form_label {
    display: block;
    color: var(--primary_color);
    margin-bottom: 30px; 
    font-weight: var(--fw-500);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--primary_color);
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--primary_color);
    opacity: 1;
}
  
  
/* Flex Common Classes */
.flex_center_all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.d_flex {
    display: flex;
}

.justify_center {
    justify-content: center;
}

.justify_end {
    justify-content: flex-end;
}

.justify_start {
    justify-content: flex-start;
}

.justify_s_b {
    justify-content: space-between;
}

.align_center {
    align-items: center;
}

.align_bottom {
    align-items: flex-end;
}

.align_top {
    align-items: flex-start;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex-direction {
    flex-direction: column;
}

  
/* Common Structure Classes */
.list_none {
    list-style: none;
}

.default_ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.subtitle {
    display: block;
    font-size: var(--font_24);
    line-height: 28px; 
    text-transform: uppercase;
    font-weight: var(--fw-500);
}
  
span.headings {
    display: block;
    font-weight: var(--fw-700);
    margin-bottom: 18px;
    margin-top: 18px;
    font-size: 20px;
    text-transform: capitalize;
}
  
  
/* Font Weight Classes */

.fw-900 {
    font-weight: var(--fw-900);
}

.fw-700 {
    font-weight: var(--fw-700);
}

.fw-600 {
    font-weight: var(--fw-600);
}

.fw-500 {
    font-weight: var(--fw-500);
}

.fw-400 {
    font-weight: var(--fw-400);
}

.fw-300 {
    font-weight: var(--fw-300);
}
/* Font Weight Classes */
  


/* Common Link Hover Classes */
.bottom-border {
    position: relative;
}

.bottom-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    margin: -3px 0;
    background-color: var(--green_color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out 0s;
}

.bottom-border:hover:before,
.bottom-border:focus:before {
    visibility: visible;
    transform: scaleX(1);
}
/* Common Link Hover Classes */

  

/* Common Spacing Classes */

.ptb140 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.pt140 {
    padding-top: 140px;
}

.pb140 {
    padding-bottom: 140px;
}

.ptb120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pt120 {
    padding-top: 120px;
}

.pb120 {
    padding-bottom: 120px;
}


.pt110 {
    padding-top: 110px;
}

.pb110 {
    padding-bottom: 110px;
}


.ptb100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}


.ptb80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt80 {
    padding-top: 80px;
}

.pb80 {
    padding-bottom: 80px;
}



.ptb60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt65 {
    padding-top: 65px;
}

.pb65 {
    padding-bottom: 65px;
}



.mt80 {
    margin-top: 80px;
}

.mb80 {
    margin-bottom: 80px;
}

.mt60 {
    margin-top: 60px;
}

.mb60 {
    margin-bottom: 60px;
}

.mt35 {
    margin-top: 35px;
}

.mb35 {
    margin-bottom: 35px;
}


/* Common Spacing Classes */


  
/* Container Classes */  
.container {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

.container_fluid {
    max-width: 100%;
    padding: 0;
}
/* Container Classes */
  
  
/*********** BG Classes ***********/
.bg_black {
    background-color: var(--primary_color);
    color: var(--white_color);
}

.bg_black1 {
    background-color: #1A1A1A;
    color: var(--white_color);
}

.bg_cyan {
    background-color: var(--cyan_color);
    color: var(--primary_color);
}

.bg_cyan2 {
    background-color: var(--cyan_color2);
    color: var(--primary_color);
}

.bg_yellow {
    background-color: var(--yellow_color);
}

.bg_transparent {
  background-color: transparent;
}

.bg_gray {
    background: #F6F6F7;
}

.bg_gray1 {
    background: #E6E7E9;
}

.bg_pink {
    background: #FFADE4;
}
 

.text_white {
    color: var(--white_color);
}

.text_black {
    color: var(--black_color);
}

.text_cyan {
    color: var(--cyan_color);
}

.text_yellow {
    color: var(--yellow_color);
}
 
/*********** BG Classes ***********/
  
  
/*********** Common Style END ***********/





@media screen and (max-width: 1199px) {

    body {
        font-size: var(--font_16);
        line-height: 22px;
    }
 
    h1,
    .h1,
    .h1_design {
        font-size: 54px;
        line-height: 60px;  
    }

    h2,
    .h2 {
        font-size: 50px;
        line-height: 54px;   
        margin-bottom: 20px;
    }
    
    h3,
    .h3 { 
        font-size: 32px;
        line-height: 38px; 
    }

    h4, 
    .h4 {
        font-size: 26px;
        line-height: 32px;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        margin: 0 0 16px 0;
        line-height: 22px;
    }

    .ptb140 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .pt140 {
        padding-top: 100px;
    }

    .pb140 {
        padding-bottom: 100px;
    }

    .ptb120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .pt120 {
        padding-top: 80px;
    }

    .pb120 { 
        padding-bottom: 80px;
    }

    .pt100 {
        padding-top: 70px;
    }

    .pb100 {
        padding-bottom: 70px;
    }

    .ptb80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mt80 {
        margin-top: 60px;
    }

    .pt80 {
        padding-top: 60px;
    }

    .pb80 {
        padding-bottom: 60px;
    }

    .mb60 {
        margin-bottom: 40px;
    }

    /* .mb35 {
        margin-bottom: 20px;
    } */

    .pt65 {
        padding-top: 50px;
    } 
    
    .pb110 {
        padding-bottom: 80px;
    }

    .button {
        font-size: var(--font_16);
        line-height: 19px;
        padding: 10px 15px;
    }

    .button .arrow {
        margin-left: 6px;
        height: 28px;
        width: 28px; 
    } 
     
    .button .arrow svg { 
        height: 16px;
        width: 16px; 
    }

    .subtitle {
        font-size: 20px;
        line-height: 24px;
    }

   
    
}


@media screen and (max-width: 1023px) {


    .pt140 {
        padding-top: 80px;
    } 

    .pb110 {
        padding-bottom: 64px;
    }

    .pt65 {
        padding-top: 42px;
    }
    
    .ptb80 {
        padding-top: 40px;
        padding-bottom: 40px;
    } 

    h2, .h2 {
        font-size: 42px;
        line-height: 48px;
    }

    h4, .h4 {
        font-size: 20px;
        line-height: 24px;
    }


    

}



@media screen and (max-width: 767px) {


    h2, .h2 {
        font-size: 35px;
        line-height: 40px;
    } 
    
    p { 
        line-height: 20px;
    }

    .button {
        font-size: var(--font_20);
        line-height: 24px;
        padding: 13px 24px;
    }

    .button .arrow {
        margin-left: 10px;
        height: 35px;
        width: 35px;
    }

    .button .arrow svg {
        height: 20px;
        width: 20px;
    }

    .ptb120 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}