@charset "utf-8";
html {
	box-sizing: border-box;
    font-size: 1vw;
}
*, *:before, *:after {
    box-sizing: inherit;
}

* {
padding: 0;
margin: 0;
}

body {
	padding: 0.5vw;
	color: #4E0069;
	font-family: Arial, Calibri;
	text-align: center;
	background-color: #FFFFFF;
}
header {
    width: auto;
	height: 10vw;
    display: grid;
    grid-template-columns: 26vw 60vw;
	justify-content: space-between;
	align-items: center;
	padding: 1vw;
}
#slogan {
    height: 4rem;
    display: inline-block;
    padding-top: 0.5rem;
    background-color: rgba(200,148,67,1.00);
    color: rgba(255,255,255,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 1.5rem;
    text-shadow: 0.2rem 0.2rem 0.2rem #363636;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

ul     {
    display: flex;
    list-style: none;
 }

li      {
	width: 100%;
	position: relative;
	text-align: center;
 }

a        {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200,148,67,1.00);
    /*background: rgba(255,199,152,1.00);*/
    text-shadow: 3px 3px 3px rgba(170,170,170,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
 }

a:hover    {
    color: rgba(131,95,38,1.00);
    text-shadow: 5px 5px 5px rgba(154,154,154,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-weight: 750;
    background-color: rgba(210,210,210,0.75);
 }


ul li ul {
	display: none;
}

li:hover > ul     {
    display: flex;
    position: absolute;
	flex-direction: column;
    width: 100%;
    background-color: rgba(255,255,255,0.89);
 }

li ul li ul{
	display: none;
}

li ul li:hover > ul {
    display: flex;
    position: absolute;
	flex-direction: column;
    width: 80%;
    background-color: rgba(255,255,255,0.89);
	top: 0;
	left: 100%;
 }

.heading1 {
    color: rgba(140,100,35,1.00);
	margin-top: 2vw;
	margin-bottom: 2vw;
    font-family: Arial;
    font-weight: bold;
    text-align: center;
    text-shadow: 5px 5px 8px rgba(173,173,173,1.00);
}

.left_section {
    display: grid;
	grid-template-columns: 35vw 45vw;
	grid-column-gap: 5vw;
	justify-items: center;
	align-items: center; 
	justify-content: center;
	margin-top: 1vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 1vw;
    padding-bottom: 0;
    vertical-align: middle;
}
.right_section {
    display: grid;
	grid-template-columns: 45vw 35vw;
	grid-column-gap: 5vw;
	justify-content: center;
	Justify-items: center; 
	align-items: center;    
	margin-top: 1vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 1vw;
    padding-bottom: 0;
    vertical-align: middle;
}

.two_col{
    display: grid;
	grid-template-columns: 25vw 25vw;
	grid-column-gap: 5vw;
	height: 150px;
	justify-content: center;
	justify-items: center;
	align-items: center;    
	margin-top: 1vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 1vw;
    padding-bottom: 30px;
    vertical-align: middle;
}
.three_col{
    display: grid;
	grid-template-columns: 25vw 25vw 25vw;
	grid-column-gap: 5vw;
	justify-content: center;
	justify-items: center;
	align-items: center;    
	margin-top: 1vw;
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 2vw;
    padding-bottom: 30px;
    vertical-align: middle;
}
.paragraph_left {
    width: 40%;
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    text-transform: none;
    line-height: 200%;
    font-size: medium;
    float: left;
    text-align: justify;
    padding-top: auto;
    padding-bottom: auto;
    margin-left: 5%;
    display: block;
    vertical-align: middle;
}
.paragraph {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    text-transform: none;
    vertical-align: baseline;
    white-space: normal;
    line-height: 200%;
    font-size: medium;
    margin-top: 50px;
    margin-bottom: 50px;
    float: right;
    text-align: justify;
    margin-right: 5%;
    display: block;
}
  
 .clearFloat {
    clear:both; 
    margin:0;
    padding:0;
 }
.image {
    object-fit: fill;
    text-align: center;
    margin-top: 20px;
}

.footer {
    width: 100%;
    display: block;
    background-color: rgba(200,148,67,1.00);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    clear: both;
    text-align: center;
    font-family: Arial, "Arial Black", Calibri;
    line-height: 170%;
    position: relative;
    top: 10px;
}
.p_small {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 0.9rem;
    text-align: center;
}
.p_medium {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 1.25rem;
    text-align: center;
    font-weight: bold;
}
.p_large {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    font-size: 3rem;
    text-align: center;
}
#natonex_hero1 {
    width: 90%;
}

p {
    color: rgba(0,0,0,1.00);
    font-family: Arial, "Arial Black", Calibri;
    text-align: justify;
    line-height: 200%;
    font-size: 1.25rem;
}
#dji {
    width: 54%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 200%;
}


.buynow {
    width: 25vw;
    height: 13vw;
    display: flex;
    justify-content: center;
	justify-items: middle;
    align-items: center;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-family: Arial, "Arial Black", Calibri;
    font-size: 3vw;
    background-color: rgba(142,196,152,1.00);
    color: black;
    border: 0.4vw solid #04AA6D;
    font-weight: bold;
    border-radius: 2vw;
}

.buynow:hover {
  background-color: #04AA6D;
  color: white;
}
.link {
	background: none; 
}
.link:hover {
	background: none; 
}

@media screen and (orientation:portrait) and (min-width:320px) and (max-width:688px) and (width:688px){
html {
    box-sizing: border-box;
}
header {
    width: auto;
	height: 10vw;
    display: grid;
    grid-template-columns: 15vw 60vw 15vw;
	grid-template-row: auto; 
	justify-content: space-between;
	align-items: center;
	padding: 0.5vw;
	margin-bottom: 2.5vw;
}
}
