/* IMPORT FONT FAMILY */
@font-face {
    font-family: 'gilroyregular';
    src: url('../fonts/gilroyregular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/gilroyregular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/gilroyregular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/gilroyregular.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/gilroyregular.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('../fonts/gilroyregular.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'gilroybold';
    src: url('../fonts/gilroybold.eot'); /* IE9 Compat Modes */
    src: url('../fonts/gilroybold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/gilroybold.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/gilroybold.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/gilroybold.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('../fonts/gilroybold.svg#svgFontName') format('svg'); /* Legacy iOS */
}

:root{
    /* COLOR THEME PALETTE */
    --primarycolor:#00109A;  
    --greycolor:#adadad;
    --bluecolor:#0071E5;
    --lightbluecolor:#4eace9;
    --lightgreycolor:#FBFBFB;
    --lightgreycolor2:#CFD4D8;
    --whiteColor:#ffffff;
    --blackColor:#000000;
    --redColor:#ff0000;
    
    /* FONT NAME */
    --ff_gilroy:'gilroyregular';
    --ff_gilroyBold:'gilroybold';

    /* FONT SIZE */
    --fs_10:10px;
    --fs_11:11px;
    --fs_12:12px;
    --fs_13:13px;
    --fs_14:14px;
    --fs_15:15px;
    --fs_16:16px;
    --fs_18:18px;
    --fs_20:20px;
    --fs_25:25px;
    --fs_28:28px;
    --fs_30:30px;

    /* FONT WEIGHT */
    --fw_thin:300;
    --fw_light:300;
    --fw_normal:400;
    --fw_semibold:600;
    --fw_bold:700;
    --fw_black:900;
}

html {
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

select,textarea,input{
    outline: none;
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

ul,ol{
    list-style-type: none;
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6,p{
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6{
  font-weight: var(--fw);
}

body{
    font-size: var(--fs16);
    font-family: var(--ff_gilroy);
    background: var(--whiteColor);
}

/* START > HEADER */
header{
    box-shadow: 0px 3px 6px #00000010;
    -webkit-box-shadow: 0px 3px 6px #00000010;
    -moz-box-shadow: 0px 3px 6px #00000010;
    -ms-box-shadow: 0px 3px 6px #00000010;
    background-color: var(--whiteColor);
    padding: 20px;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .innerHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .list_sm li:not(:last-child){
    margin:0 20px 0 0;
}

header .list_sm li a{
    background-color: var(--lightbluecolor);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--whiteColor);
}
/* END > HEADER */


/* START > MAIN CONTENT */
.mainContent{
    padding: 50px 0;
    margin-top: 90px;
    min-height: calc(100vh - 219px);
    background-color: rgba(251, 251, 251, .8);
}

.mainContent .innerContent .desc{
    text-align: center;
    font-size: var(--fs_18);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
    margin:0 auto 35px;
    line-height: 30px;
    max-width: 920px;
}

.mainContent .innerContent .section_content{
    position: relative;
    max-width: 600px;
    margin:0 auto;
    box-shadow: 0px 0px 6px #0000001F;
    -webkit-box-shadow: 0px 0px 6px #0000001F;
    -moz-box-shadow: 0px 0px 6px #0000001F;
    -ms-box-shadow: 0px 0px 6px #0000001F;
    border-radius: 8px;
    background-color: var(--whiteColor);
    padding: 30px;
}

.mainContent .innerContent .section_content:after{
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 8px;
    height: 4px;
    background-color: var(--primarycolor);
}
.mainContent .innerContent .section_content .headTitle{
    color:var(--primarycolor);
    font-size: var(--fs_28);
    font-family: var(--ff_gilroyBold);
    font-weight: var(--fw_semibold);
    margin:20px 0 30px;
}
/* START CODE > SECTION - FILL FORM */
.mainContent .innerContent .fillForm_section .txtRequiredField{
    color:var(--blackColor);
    font-size: var(--fs_12);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
    position: absolute;
    top:15px;
    right: 15px;
}

.mainContent .innerContent .fillForm_section .txtRequiredField sup{
    color:var(--redColor);
}

.mainContent .innerContent .fillForm_section .fieldGrp{
    margin:0 0 20px;
}

.mainContent .innerContent .fillForm_section .fieldLabel{
    color:var(--blackColor);
    font-size: var(--fs16);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
    margin:0 0 10px;
}

.mainContent .innerContent .fillForm_section .fieldLabel sup{
    color:var(--redColor)
}

.mainContent .innerContent .fillForm_section .fieldInput,
.mainContent .innerContent .fillForm_section .fieldTextArea{
    border:1px solid var(--lightgreycolor2);
    border-radius: 2px;
    font-size: var(--fs14);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_normal);
}   

.mainContent .innerContent .fillForm_section .fieldTextArea{
    height: 84px;
    resize: none;
    overflow-y: hidden;
}

.mainContent .innerContent .fillForm_section  .btnBlock .btnPrimary{
    border:0;
    outline: none;
    cursor: pointer;
    background-color: var(--bluecolor);
    border-radius: 0px 15px;
    color:var(--whiteColor);
    font-size: var(--fs_18);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
    padding: 10px 40px;
}
/* END CODE > SECTION - FILL FORM */

/* START CODE > SECTION - THANK YOU */
.mainContent .innerContent .thankyou_section .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primarycolor);
    fill: var(--primarycolor);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .mainContent .innerContent .thankyou_section .checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--whiteColor);
    stroke-miterlimit: 10;
    margin: 10% auto 0;
    box-shadow: inset 0px 0px 0px var(--primarycolor);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .mainContent .innerContent .thankyou_section .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }

  .mainContent .innerContent .thankyou_section .txt_desc{
    color:var(--blackColor);
    font-size: var(--fs_18);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
  }


  .mainContent .innerContent .thankyou_section .btnBack{
    border:0;
    outline: none;
    cursor: pointer;
    background-color: var(--bluecolor);
    border-radius: 0px 15px;
    color:var(--whiteColor);
    font-size: var(--fs_18);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
    padding: 10px 40px;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #fff;
    }
  }
/* END > MAIN CONTENT */

/* START > FOOTER */
footer{
    padding: 20px 100px;
}
footer .listContact{
    margin:0 0 25px;
}

footer .listContact li:not(:last-child){
    margin:0 20px 0 0;
}

footer .listContact li a{
    color:var(--primarycolor);
    font-size: var(--fs_16);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_bold);
}

footer .txtCopyright{
    font-size: var(--fs_13);
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_normal);
    line-height: 20px;
    text-align: center;
    margin:0 auto;
    max-width: 1099px;
}
/* END > FOOTER */


/* START > MEDIA QUERIES ALL DEVICES RESPONSIVE */

/* FOR MOBILE DEVICE LESS THAN < 767 */
@media (max-width:767.9px){
    header{
        padding: 20px;
    }
    header .logoBlock{
        transform: initial;
        position: initial;
    }

    header .logoBlock .imgLogo{
        max-width: 150px;
    }

    header .list_sm li:not(:last-child){
        margin:0 10px 0 0;
    }
    header .list_sm li a{
        width: 20px;
        height: 20px;
    }
    header .list_sm li a .fa{
        font-size: var(--fs_12);
    }

    .mainContent{
        margin-top: 75px;
    }

    .mainContent .innerContent .desc{
        max-width: 100%;
        font-size: var(--fs16);
    }

    footer{
        padding:20px;
    }

    footer .listContact li:not(:last-child){
        margin:0 0 25px;
    }
    footer .txtCopyright{
        max-width: 100%;
    }
}

/* END > MEDIA QUERIES ALL DEVICES RESPONSIVE */

.loadericon {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 110;
    display: none;
    background-color: rgb(0 0 0 / 20%);
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.photoEditorWrapper {
    width: 90%;
    max-width:600px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:0px 3px 6px #00000010;
    -webkit-box-shadow:0px 3px 6px #00000010;
    -moz-box-shadow:0px 3px 6px #00000010;
    -ms-box-shadow:0px 3px 6px #00000010;
    padding: 20px;
    z-index: 11;
    display: none;
    border-radius: 20px;
}

.photoContainer {
    background: #999999;
    height: 50vh;
    overflow: hidden;
    text-align: center;
}

.photoContainer img {
    width: auto;
    height: 100%;
}

.controllerWrapper {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.zoomController {
    width: 60%;
    display: none;
}

.zoomController .btn-group {
    display: flex;
}

.zoomController input[type="range"] {
    margin: 0 5px 0 10px;
    width: 100%;
}

.zoomController button {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.buttonContainer .btnPrimary{
    width:calc(100% / 2);
    background-color: var(--bluecolor);
    color:var(--whiteColor);
    font-size: var(--fs_16);
    font-family: var(--ff_gilroyBold);
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border-radius: 0px 15px;
}

.buttonContainer .btnPrimary:not(:last-child) {
    margin: 0 20px 0 0;
}
.overlayPhotoEditor{
    position: fixed;
    top:0;
    inset:0;
    background-color: rgba(0,0,0,.5);
    display: none;
    z-index: 9999;
}
.cropper-point.point-se,
.cropper-point{
    border-radius: 50%;
}

.cropper-point{
    width: 12px !important;
    height: 12px !important;
    opacity: 1;
    background-color: #fff;
}

.cropper-view-box{
    border:5px solid #fff;
    outline:none;
}

.fieldGrp .list_checkbox {
    margin-top: 15px;
    padding: 0 10px;
}

.fieldGrp .list_checkbox li:not(:last-child) {
    margin: 0 0 5px;
}

.fieldGrp .list_checkbox li .field_chk {
    position: relative;
    cursor: pointer;
}

.fieldGrp .list_checkbox li .field_chk .field_input_chk {
    display: none;
}

.fieldGrp .list_checkbox li .field_chk .dot_chk {
    width: 20px;
    height: 20px;
    border: 2px solid #989898;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    float: left;
}

.fieldGrp .list_checkbox li .field_chk .field_input_chk:checked~.dot_chk{
    background-color: #989898;
}

.fieldGrp .list_checkbox li .field_chk .field_input_chk~.dot_chk:after {
    content: "";
    display: inline-block;
    transform: rotate(45deg);
    height: 15px;
    width: 8px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    position: relative;
    top: -2px;
    right: 0;
    z-index: 9;
}

.fieldGrp .list_checkbox li .field_chk .field_input_chk:checked~.dot_chk:after {
    border-color: #fff;
}

.fieldGrp .list_checkbox li .field_chk .txt_chk {
    float: right;
    width: calc(100% - 30px);
    color: var(--blackColor);
    font-size: 13px;
    font-family: var(--ff_gilroy);
    font-weight: var(--fw_semibold);
}

.linkNotice {
    color:#0071E5;
    text-decoration: underline;
}